aboutsummaryrefslogtreecommitdiffstats
path: root/chain/bloom9_test.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-04 08:29:49 +0800
committerobscuren <geffobscura@gmail.com>2014-11-04 08:29:49 +0800
commit9c2b8786784109a0d3fd902cfe351f4616c2491c (patch)
tree3cc5641da0556e590204fea8d27bdd8ec4aacb9d /chain/bloom9_test.go
parenta82b89e2d524a9b7f758dc2d981e8af835d8cd2a (diff)
downloaddexon-9c2b8786784109a0d3fd902cfe351f4616c2491c.tar
dexon-9c2b8786784109a0d3fd902cfe351f4616c2491c.tar.gz
dexon-9c2b8786784109a0d3fd902cfe351f4616c2491c.tar.bz2
dexon-9c2b8786784109a0d3fd902cfe351f4616c2491c.tar.lz
dexon-9c2b8786784109a0d3fd902cfe351f4616c2491c.tar.xz
dexon-9c2b8786784109a0d3fd902cfe351f4616c2491c.tar.zst
dexon-9c2b8786784109a0d3fd902cfe351f4616c2491c.zip
Sha addresses
Diffstat (limited to 'chain/bloom9_test.go')
-rw-r--r--chain/bloom9_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/chain/bloom9_test.go b/chain/bloom9_test.go
index 863d0adee..8d8822030 100644
--- a/chain/bloom9_test.go
+++ b/chain/bloom9_test.go
@@ -1,9 +1,12 @@
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) {
@@ -17,3 +20,12 @@ func TestBloom9(t *testing.T) {
t.Errorf("Bloom lookup failed")
}
}
+
+func TestAddress(t *testing.T) {
+ block := &Block{}
+ block.Coinbase = ethutil.Hex2Bytes("22341ae42d6dd7384bc8584e50419ea3ac75b83f")
+ fmt.Printf("%x\n", crypto.Sha3(block.Coinbase))
+
+ bin := CreateBloom(block)
+ fmt.Printf("bin = %x\n", ethutil.LeftPadBytes(bin, 64))
+}