forked from cerc-io/plugeth
22 lines
500 B
Go
22 lines
500 B
Go
package accounts
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
"github.com/ethereum/go-ethereum/crypto/randentropy"
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
|
)
|
|
|
|
func TestAccountManager(t *testing.T) {
|
|
ks := crypto.NewKeyStorePlain(ethutil.DefaultDataDir())
|
|
am := NewAccountManager(ks)
|
|
pass := "" // not used but required by API
|
|
a1, err := am.NewAccount(pass)
|
|
toSign := randentropy.GetEntropyCSPRNG(32)
|
|
_, err = am.Sign(a1, pass, toSign)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|