From 925c696a6c9cc9bacb6a81ee9a7f4328a7288059 Mon Sep 17 00:00:00 2001 From: YOSHIDA Masanori Date: Mon, 10 Dec 2018 16:10:46 +0900 Subject: [PATCH 1/2] Fix typo in interfaces.go --- interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces.go b/interfaces.go index 26b0fcbc1743..50c6500d6c8d 100644 --- a/interfaces.go +++ b/interfaces.go @@ -146,7 +146,7 @@ type FilterQuery struct { // {{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 + // {{A, B}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position Topics [][]common.Hash } From c9b65313a62400475d16b787178671ed1cde8de0 Mon Sep 17 00:00:00 2001 From: YOSHIDA Masanori Date: Mon, 10 Dec 2018 21:19:01 +0900 Subject: [PATCH 2/2] Update interfaces.go --- interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces.go b/interfaces.go index 50c6500d6c8d..be783440629c 100644 --- a/interfaces.go +++ b/interfaces.go @@ -146,7 +146,7 @@ type FilterQuery struct { // {{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 + // {{A, B}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position Topics [][]common.Hash }