From 69658eccb1c1bfddfbe3090a5e3a79bed23d4ae3 Mon Sep 17 00:00:00 2001 From: TanakaFairwayCorp <44051872+TanakaFairwayCorp@users.noreply.github.com> Date: Tue, 15 Jan 2019 13:38:50 +0900 Subject: [PATCH] The current implementation does not support the OR-condition filter which is required by the RPC {{A, B}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position --- interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces.go b/interfaces.go index be78344062..3ea410dad6 100644 --- a/interfaces.go +++ b/interfaces.go @@ -147,7 +147,7 @@ type FilterQuery struct { // {{}, {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 - Topics [][]common.Hash + Topics [][]*common.Hash } // LogFilterer provides access to contract log events using a one-off query or continuous