diff --git a/keychain/btcwallet.go b/keychain/btcwallet.go index 749f09ec..2d9f2d8b 100644 --- a/keychain/btcwallet.go +++ b/keychain/btcwallet.go @@ -73,7 +73,7 @@ func (b *BtcWalletKeyRing) keyScope() (*waddrmgr.ScopedKeyManager, error) { // Otherwise, we'll first do a check to ensure that the root manager // isn't locked, as otherwise we won't be able to *use* the scope. - if b.wallet.Manager.Locked() { + if b.wallet.Manager.IsLocked() { return nil, fmt.Errorf("cannot create BtcWalletKeyRing with " + "locked waddrmgr.Manager") }