hdkeychain: Fix small wording issue in ChainCode() tests
This commit is contained in:
parent
6c6f3fd3b7
commit
f648594deb
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ func TestExtendedKeyAPI(t *testing.T) {
|
||||||
chainCode := key.ChainCode()
|
chainCode := key.ChainCode()
|
||||||
if !bytes.Equal(chainCode, test.chainCode) {
|
if !bytes.Equal(chainCode, test.chainCode) {
|
||||||
t.Errorf("ChainCode #%d (%s): want %v, got %v", i,
|
t.Errorf("ChainCode #%d (%s): want %v, got %v", i,
|
||||||
test.name, chainCode, test.chainCode)
|
test.name, test.chainCode, chainCode)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue