mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
396 B
18 lines
396 B
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 := crypto.GetEntropyCSPRNG(32)
|
|
_, err = am.Sign(a1, pass, toSign)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|