aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/key_store_test.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-10-16 01:32:05 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-10-16 01:32:05 +0800
commit2f1f2e4811a6f3094f99b55f6553fe27d83f9aad (patch)
treec346188eb09c640d03e493b25f6d6870c4e59a4a /crypto/key_store_test.go
parent0de9b16b118cc1c12689b96fdded22f8a42f71f4 (diff)
parent2db97986460c57ba74a563d97a704a45a270df7d (diff)
downloaddexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.gz
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.go8
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())
+ }
+}