Sha addresses
This commit is contained in:
@ -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))
|
||||
}
|
||||
|
Reference in New Issue
Block a user