aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xeth/xeth.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go
index 5a5a4650a..5936c0fb2 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -122,6 +122,7 @@ func cAddress(a []string) []common.Address {
func cTopics(t [][]string) [][]common.Hash {
topics := make([][]common.Hash, len(t))
for i, iv := range t {
+ topics[i] = make([]common.Hash, len(iv))
for j, jv := range iv {
topics[i][j] = common.HexToHash(jv)
}