diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 9ee752937..be6c6ea7f 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3851,7 +3851,7 @@ bool CWallet::IsLockedNote(const JSOutPoint& outpt) const return (setLockedSproutNotes.count(outpt) > 0); } -std::vector CWallet::ListLockedNotes() +std::vector CWallet::ListLockedSproutNotes() { AssertLockHeld(cs_wallet); // setLockedSproutNotes std::vector vOutpts(setLockedSproutNotes.begin(), setLockedSproutNotes.end()); diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 1432af95d..31d228442 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -968,7 +968,7 @@ public: void LockNote(const JSOutPoint& output); void UnlockNote(const JSOutPoint& output); void UnlockAllSproutNotes(); - std::vector ListLockedNotes(); + std::vector ListLockedSproutNotes(); /**