diff options
Diffstat (limited to 'ethchain/bloom9_test.go')
-rw-r--r-- | ethchain/bloom9_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/bloom9_test.go b/ethchain/bloom9_test.go index ab648b7fc..40f30f35d 100644 --- a/ethchain/bloom9_test.go +++ b/ethchain/bloom9_test.go @@ -8,7 +8,7 @@ import ( func TestBloom9(t *testing.T) { testCase := []byte("testtest") - bin := LogsBloom([]vm.Log{vm.Log{testCase, nil, nil}}).Bytes() + bin := LogsBloom([]vm.Log{vm.Log{testCase, [][]byte{[]byte("hellohello")}, nil}}).Bytes() res := BloomLookup(bin, testCase) if !res { |