Commit b04da9d4 authored by HackyMiner's avatar HackyMiner Committed by Felix Lange

ethereum: improve FilterQuery comment (#18955)

No related merge requests found
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment