Merge PR #6399: SDK Telemetry

This commit is contained in:
Alexander Bezobchuk
2020-06-16 11:11:02 -04:00
committed by GitHub
parent e2f336345d
commit 8ee7d1f403
11 changed files with 492 additions and 89 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ func (ctx Context) queryABCI(req abci.RequestQuery) (abci.ResponseQuery, error)
}
// data from trusted node or subspace query doesn't need verification
if ctx.TrustNode || !isQueryStoreWithProof(req.Path) {
if !opts.Prove || !isQueryStoreWithProof(req.Path) {
return result.Response, nil
}