aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces.go
diff options
context:
space:
mode:
authorHackyMiner <hackyminer@gmail.com>2019-01-29 00:50:31 +0800
committerFelix Lange <fjl@users.noreply.github.com>2019-01-29 00:50:31 +0800
commitb04da9d48227b5d020a9668d06a5b92cb6746540 (patch)
tree41a96914c7b9d94a33f8d092f539a29376e01cc8 /interfaces.go
parent104e6b20501b23824fcbc3160fc354dc98645c5c (diff)
downloadgo-tangerine-b04da9d48227b5d020a9668d06a5b92cb6746540.tar
go-tangerine-b04da9d48227b5d020a9668d06a5b92cb6746540.tar.gz
go-tangerine-b04da9d48227b5d020a9668d06a5b92cb6746540.tar.bz2
go-tangerine-b04da9d48227b5d020a9668d06a5b92cb6746540.tar.lz
go-tangerine-b04da9d48227b5d020a9668d06a5b92cb6746540.tar.xz
go-tangerine-b04da9d48227b5d020a9668d06a5b92cb6746540.tar.zst
go-tangerine-b04da9d48227b5d020a9668d06a5b92cb6746540.zip
ethereum: improve FilterQuery comment (#18955)
Diffstat (limited to 'interfaces.go')
-rw-r--r--interfaces.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/interfaces.go b/interfaces.go
index be7834406..1ff31f96b 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
}