diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-04 17:57:02 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-04 17:57:02 +0800 |
commit | f59a3b67f69b26f969084e0de165435e80bd8e12 (patch) | |
tree | f92098fa0252484fcdccdaf6075c2842713a2fc9 /chain/bloom9_test.go | |
parent | 1025d097fd4e5171dadb2c1a8eeb43b7730b13b6 (diff) | |
download | go-tangerine-f59a3b67f69b26f969084e0de165435e80bd8e12.tar go-tangerine-f59a3b67f69b26f969084e0de165435e80bd8e12.tar.gz go-tangerine-f59a3b67f69b26f969084e0de165435e80bd8e12.tar.bz2 go-tangerine-f59a3b67f69b26f969084e0de165435e80bd8e12.tar.lz go-tangerine-f59a3b67f69b26f969084e0de165435e80bd8e12.tar.xz go-tangerine-f59a3b67f69b26f969084e0de165435e80bd8e12.tar.zst go-tangerine-f59a3b67f69b26f969084e0de165435e80bd8e12.zip |
StateManager => BlockManager
Diffstat (limited to 'chain/bloom9_test.go')
-rw-r--r-- | chain/bloom9_test.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chain/bloom9_test.go b/chain/bloom9_test.go index 8d8822030..8b1b962cb 100644 --- a/chain/bloom9_test.go +++ b/chain/bloom9_test.go @@ -1,12 +1,8 @@ package chain import ( - "fmt" "testing" - - "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/state" - "github.com/ethgo.old/ethutil" ) func TestBloom9(t *testing.T) { @@ -21,6 +17,7 @@ func TestBloom9(t *testing.T) { } } +/* func TestAddress(t *testing.T) { block := &Block{} block.Coinbase = ethutil.Hex2Bytes("22341ae42d6dd7384bc8584e50419ea3ac75b83f") @@ -29,3 +26,4 @@ func TestAddress(t *testing.T) { bin := CreateBloom(block) fmt.Printf("bin = %x\n", ethutil.LeftPadBytes(bin, 64)) } +*/ |