diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-16 01:32:05 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-16 01:32:05 +0800 |
commit | 2f1f2e4811a6f3094f99b55f6553fe27d83f9aad (patch) | |
tree | c346188eb09c640d03e493b25f6d6870c4e59a4a /crypto/key_store_test.go | |
parent | 0de9b16b118cc1c12689b96fdded22f8a42f71f4 (diff) | |
parent | 2db97986460c57ba74a563d97a704a45a270df7d (diff) | |
download | dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.gz dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.bz2 dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.lz dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.xz dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.zst dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.zip |
Merge pull request #1887 from Gustav-Simonsson/icap
common, crypto: add ICAP functions
Diffstat (limited to 'crypto/key_store_test.go')
-rw-r--r-- | crypto/key_store_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/key_store_test.go b/crypto/key_store_test.go index fda87ddc8..de4a21dcf 100644 --- a/crypto/key_store_test.go +++ b/crypto/key_store_test.go @@ -20,6 +20,7 @@ import ( "encoding/hex" "fmt" "reflect" + "strings" "testing" "github.com/ethereum/go-ethereum/common" @@ -223,3 +224,10 @@ func loadKeyStoreTestV1(file string, t *testing.T) map[string]KeyStoreTestV1 { } return tests } + +func TestKeyForDirectICAP(t *testing.T) { + key := NewKeyForDirectICAP(randentropy.Reader) + if !strings.HasPrefix(key.Address.Hex(), "0x00") { + t.Errorf("Expected first address byte to be zero, have: %s", key.Address.Hex()) + } +} |