aboutsummaryrefslogtreecommitdiffstats
path: root/chain
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2014-11-01 01:56:25 +0800
committerFelix Lange <fjl@twurst.com>2014-11-01 01:56:25 +0800
commit394e0f60c20206c7f7c4c76551d11a2b14b23a4d (patch)
treee6765c3630ae19d05d9398139f708e77dd918fe4 /chain
parentb95d9e005da6ed58df947732b4c126dedff5effb (diff)
downloadgo-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.gz
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.bz2
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.lz
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.xz
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.go6
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 {