diff options
author | Felix Lange <fjl@twurst.com> | 2014-11-01 01:56:25 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2014-11-01 01:56:25 +0800 |
commit | 394e0f60c20206c7f7c4c76551d11a2b14b23a4d (patch) | |
tree | e6765c3630ae19d05d9398139f708e77dd918fe4 /chain | |
parent | b95d9e005da6ed58df947732b4c126dedff5effb (diff) | |
download | go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.gz go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.zst go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.zip |
chain, tests/helper, vm: make tests compile
They were broken by df5603de0a34e80a1, when vm.Log became ethstate.Log.
Diffstat (limited to 'chain')
-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 { |