From c52789365e5dbcb25aa5f1775de4d318da79e5a7 Mon Sep 17 00:00:00 2001 From: Samuel Dobson Date: Thu, 23 Sep 2021 00:17:55 +1200 Subject: Allow locked UTXOs to be store in the wallet database --- src/interfaces/wallet.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces') diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index a85db04b8b..f92d100ef5 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -122,10 +122,10 @@ public: virtual bool displayAddress(const CTxDestination& dest) = 0; //! Lock coin. - virtual void lockCoin(const COutPoint& output) = 0; + virtual bool lockCoin(const COutPoint& output) = 0; //! Unlock coin. - virtual void unlockCoin(const COutPoint& output) = 0; + virtual bool unlockCoin(const COutPoint& output) = 0; //! Return whether coin is locked. virtual bool isLockedCoin(const COutPoint& output) = 0; -- cgit v1.2.3