Skip to content

Commit

Permalink
ethereum: improve FilterQuery comment (ethereum#18955)
Browse files Browse the repository at this point in the history
  • Loading branch information
hackmod authored and fjl committed Jan 28, 2019
1 parent 104e6b2 commit b04da9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit b04da9d

Please sign in to comment.