From 7518c4a9be9bc5596252a1d29b1ca8d4b996de69 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Fri, 13 Oct 2017 15:02:49 +0400 Subject: [PATCH] [rpc] update comment [ci skip] --- rpc/client/types.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpc/client/types.go b/rpc/client/types.go index 13402261..dc573edd 100644 --- a/rpc/client/types.go +++ b/rpc/client/types.go @@ -7,5 +7,6 @@ type ABCIQueryOptions struct { Trusted bool } -// DefaultABCIQueryOptions are latest height (0) and prove equal to true. +// DefaultABCIQueryOptions are latest height (0) and trusted equal to false +// (which will result in a proof being returned). var DefaultABCIQueryOptions = ABCIQueryOptions{Height: 0, Trusted: false}