fix clientidentity test after privkey removed
This commit is contained in:
parent
71765957e4
commit
488a042736
@ -8,12 +8,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestClientIdentity(t *testing.T) {
|
func TestClientIdentity(t *testing.T) {
|
||||||
clientIdentity := NewSimpleClientIdentity("Ethereum(G)", "0.5.16", "test", []byte("privkey"), []byte("pubkey"))
|
clientIdentity := NewSimpleClientIdentity("Ethereum(G)", "0.5.16", "test", []byte("pubkey"))
|
||||||
key := clientIdentity.Privkey()
|
key := clientIdentity.Pubkey()
|
||||||
if !bytes.Equal(key, []byte("privkey")) {
|
|
||||||
t.Errorf("Expected Privkey to be %x, got %x", key, []byte("privkey"))
|
|
||||||
}
|
|
||||||
key = clientIdentity.Pubkey()
|
|
||||||
if !bytes.Equal(key, []byte("pubkey")) {
|
if !bytes.Equal(key, []byte("pubkey")) {
|
||||||
t.Errorf("Expected Pubkey to be %x, got %x", key, []byte("pubkey"))
|
t.Errorf("Expected Pubkey to be %x, got %x", key, []byte("pubkey"))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user