vendor: rebase fixes

This commit is contained in:
Victor Farazdagi 2017-02-23 20:28:45 +03:00
parent 158db66500
commit cd96e53442
2 changed files with 2 additions and 2 deletions

View File

@ -309,7 +309,7 @@ func testRecoverAccount(t *testing.T) bool {
}
extChild2String := key.ExtendedKey.String()
if err := accountManager.DeleteAccount(account, newAccountPassword); err != nil {
if err := accountManager.Delete(account, newAccountPassword); err != nil {
t.Errorf("cannot remove account: %v", err)
}

View File

@ -249,7 +249,7 @@ func TestRecoverAccount(t *testing.T) {
}
extChild2String := key.ExtendedKey.String()
if err := accountManager.DeleteAccount(account, newAccountPassword); err != nil {
if err := accountManager.Delete(account, newAccountPassword); err != nil {
t.Errorf("cannot remove account: %v", err)
}