Commit 101ea1a1 authored by Taylor Gerring's avatar Taylor Gerring

Make inner size before assinging. Closes #615

parent c8e5d53a
......@@ -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)
}
......
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