all: fixed FilterQuery comment in accordance with the JSON-RPC document

This commit is contained in:
hackyminer 2019-01-28 23:20:08 +09:00
parent 277a8c975b
commit 79105c4b21
No known key found for this signature in database
GPG key ID: 46D453DDCA4B766F

View file

@ -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
} }