diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-27 23:18:40 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-27 23:18:40 +0800 |
commit | 382726fde4b9b7656c4f4a96b6985fc816e3a7ce (patch) | |
tree | d874addbdc9ad3e7d34982bea98273665dc1df75 /accounts/accounts_test.go | |
parent | 48083608b513d97d9db10bbfdabb6e5f8830f08a (diff) | |
parent | 512ffa2bf4308b44aa6f43f25238b375b58d7dbc (diff) | |
download | dexon-382726fde4b9b7656c4f4a96b6985fc816e3a7ce.tar dexon-382726fde4b9b7656c4f4a96b6985fc816e3a7ce.tar.gz dexon-382726fde4b9b7656c4f4a96b6985fc816e3a7ce.tar.bz2 dexon-382726fde4b9b7656c4f4a96b6985fc816e3a7ce.tar.lz dexon-382726fde4b9b7656c4f4a96b6985fc816e3a7ce.tar.xz dexon-382726fde4b9b7656c4f4a96b6985fc816e3a7ce.tar.zst dexon-382726fde4b9b7656c4f4a96b6985fc816e3a7ce.zip |
Merge branch 'key_store_and_accounts_integration' of https://github.com/Gustav-Simonsson/go-ethereum into Gustav-Simonsson-key_store_and_accounts_integration
Diffstat (limited to 'accounts/accounts_test.go')
-rw-r--r-- | accounts/accounts_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/accounts/accounts_test.go b/accounts/accounts_test.go new file mode 100644 index 000000000..381657718 --- /dev/null +++ b/accounts/accounts_test.go @@ -0,0 +1,19 @@ +package accounts + +import ( + "github.com/ethereum/go-ethereum/crypto" + "testing" +) + +func TestAccountManager(t *testing.T) { + ks := crypto.NewKeyStorePlain(crypto.DefaultDataDir()) + am := NewAccountManager(ks) + pass := "" // not used but required by API + a1, err := am.NewAccount(pass) + toSign := make([]byte, 4, 4) + toSign = []byte{0, 1, 2, 3} + _, err = am.Sign(a1.Addr, pass, toSign) + if err != nil { + t.Fatal(err) + } +} |