aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces.go
diff options
context:
space:
mode:
authorMohanson <mohanson@outlook.com>2018-05-29 15:44:06 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-05-29 15:44:06 +0800
commita9c6ef6905261bd25c4a2d14bf13b093ad6444fd (patch)
treec578f7d595937748e21f8fe81707f68a379b5ea3 /interfaces.go
parentccc0debb63124ee99906c2cfff6125de30e8c62f (diff)
downloadgo-tangerine-a9c6ef6905261bd25c4a2d14bf13b093ad6444fd.tar
go-tangerine-a9c6ef6905261bd25c4a2d14bf13b093ad6444fd.tar.gz
go-tangerine-a9c6ef6905261bd25c4a2d14bf13b093ad6444fd.tar.bz2
go-tangerine-a9c6ef6905261bd25c4a2d14bf13b093ad6444fd.tar.lz
go-tangerine-a9c6ef6905261bd25c4a2d14bf13b093ad6444fd.tar.xz
go-tangerine-a9c6ef6905261bd25c4a2d14bf13b093ad6444fd.tar.zst
go-tangerine-a9c6ef6905261bd25c4a2d14bf13b093ad6444fd.zip
ethereum: fix a typo in FilterQuery{} (#16827)
Fix a spelling mistake in comment
Diffstat (limited to 'interfaces.go')
-rw-r--r--interfaces.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces.go b/interfaces.go
index 1ae1eba48..a8b48c93d 100644
--- a/interfaces.go
+++ b/interfaces.go
@@ -144,7 +144,7 @@ type FilterQuery struct {
// {} 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}} 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
Topics [][]common.Hash
}