diff options
Diffstat (limited to 'chain/bloom9_test.go')
-rw-r--r-- | chain/bloom9_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chain/bloom9_test.go b/chain/bloom9_test.go index b5a269504..863d0adee 100644 --- a/chain/bloom9_test.go +++ b/chain/bloom9_test.go @@ -3,12 +3,14 @@ package chain import ( "testing" - "github.com/ethereum/go-ethereum/vm" + "github.com/ethereum/go-ethereum/state" ) func TestBloom9(t *testing.T) { testCase := []byte("testtest") - bin := LogsBloom([]vm.Log{vm.Log{testCase, [][]byte{[]byte("hellohello")}, nil}}).Bytes() + bin := LogsBloom([]state.Log{ + {testCase, [][]byte{[]byte("hellohello")}, nil}, + }).Bytes() res := BloomLookup(bin, testCase) if !res { |