diff options
author | YOSHIDA Masanori <masanori.yoshida@gmail.com> | 2018-12-10 20:24:55 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-12-10 20:24:55 +0800 |
commit | c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec (patch) | |
tree | 22083efed5402a68c2c95bb7e5bba1b893d9fdb3 /interfaces.go | |
parent | 2fdff338034e3ec990f08708c08a7695c39186d2 (diff) | |
download | dexon-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar.gz dexon-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar.zst dexon-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.zip |
ethereum: fix typo in interfaces.go (#18266)
* Fix typo in interfaces.go
* Update interfaces.go
Diffstat (limited to 'interfaces.go')
-rw-r--r-- | interfaces.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces.go b/interfaces.go index 26b0fcbc1..be7834406 100644 --- a/interfaces.go +++ b/interfaces.go @@ -146,7 +146,7 @@ type FilterQuery struct { // {{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 + // {{A, B}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position Topics [][]common.Hash } |