From 79105c4b21311ddabc68eeaf1b09020dfa4fac0d Mon Sep 17 00:00:00 2001 From: hackyminer Date: Mon, 28 Jan 2019 23:20:08 +0900 Subject: [PATCH] all: fixed FilterQuery comment in accordance with the JSON-RPC document --- interfaces.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interfaces.go b/interfaces.go index be78344062..1ff31f96b6 100644 --- a/interfaces.go +++ b/interfaces.go @@ -144,9 +144,9 @@ type FilterQuery struct { // Examples: // {} or nil matches any topic list // {{A}} matches topic A in first position - // {{}, {B}} matches any topic in first position, B in second position - // {{A}, {B}} matches topic A in first position, B in second position - // {{A, B}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position + // {{}, {B}} matches any topic in first position AND B in second position + // {{A}, {B}} matches topic A in first position AND B in second position + // {{A, B}, {C, D}} matches topic (A OR B) in first position AND (C OR D) in second position Topics [][]common.Hash }