aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYOSHIDA Masanori <masanori.yoshida@gmail.com>2018-12-10 20:24:55 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-12-10 20:24:55 +0800
commitc1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec (patch)
tree22083efed5402a68c2c95bb7e5bba1b893d9fdb3
parent2fdff338034e3ec990f08708c08a7695c39186d2 (diff)
downloadgo-tangerine-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar
go-tangerine-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar.gz
go-tangerine-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar.bz2
go-tangerine-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar.lz
go-tangerine-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar.xz
go-tangerine-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.tar.zst
go-tangerine-c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec.zip
ethereum: fix typo in interfaces.go (#18266)
* Fix typo in interfaces.go * Update interfaces.go
-rw-r--r--interfaces.go2
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
}