aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2019-05-18 11:01:56 +0100
committerAndrew Chow <achow101-github@achow101.com>2019-05-28 11:03:54 -0400
commit0db94e55dcbbfc741df463c404818d9033b4fff1 (patch)
tree12800e57958760e320ef62c0790067a76a27b414 /src/wallet/wallet.h
parent6cb888b37d7022fbcf5b9c88a8d4f19454f32699 (diff)
downloadbitcoin-0db94e55dcbbfc741df463c404818d9033b4fff1.tar.xz
wallet: Pass WalletBatch to CWallet::UnsetWalletFlag
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index f627cc59a2..3f6f6808ae 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -720,6 +720,9 @@ private:
//! Adds a script to the store and saves it to disk
bool AddCScriptWithDB(WalletBatch& batch, const CScript& script);
+ //! Unsets a wallet flag and saves it to disk
+ void UnsetWalletFlagWithDB(WalletBatch& batch, uint64_t flag);
+
/** Interface for accessing chain state. */
interfaces::Chain* m_chain;