mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-15 20:46:40 +00:00
ethereum: improve FilterQuery comment (#18955)
This commit is contained in:
parent
104e6b2050
commit
b04da9d482
1 changed files with 3 additions and 3 deletions
|
|
@ -144,9 +144,9 @@ type FilterQuery struct {
|
||||||
// Examples:
|
// Examples:
|
||||||
// {} or nil matches any topic list
|
// {} or nil matches any topic list
|
||||||
// {{A}} matches topic A in first position
|
// {{A}} matches topic A in first position
|
||||||
// {{}, {B}} matches any topic in first position, B in second position
|
// {{}, {B}} matches any topic in first position AND B in second position
|
||||||
// {{A}, {B}} matches topic A in first position, 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, (C OR D) 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
|
Topics [][]common.Hash
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue