aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/walletutil.h
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2019-07-05 22:32:59 -0400
committerAndrew Chow <achow101-github@achow101.com>2020-04-23 13:25:50 -0400
commit96accc73f067c7c95946e9932645dd821ef67f63 (patch)
tree0de1bb879946d071d96da5228c87c100c5da7813 /src/wallet/walletutil.h
parent6b8119af53ee2fdb4c4b5b24b4e650c0dc3bd27c (diff)
downloadbitcoin-96accc73f067c7c95946e9932645dd821ef67f63.tar.xz
Add WALLET_FLAG_DESCRIPTORS
Diffstat (limited to 'src/wallet/walletutil.h')
-rw-r--r--src/wallet/walletutil.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/walletutil.h b/src/wallet/walletutil.h
index c91c9aca96..4f1f4c79dd 100644
--- a/src/wallet/walletutil.h
+++ b/src/wallet/walletutil.h
@@ -55,6 +55,9 @@ enum WalletFlags : uint64_t {
//! bitcoin from opening the wallet, thinking it was newly created, and
//! then improperly reinitializing it.
WALLET_FLAG_BLANK_WALLET = (1ULL << 33),
+
+ //! Indicate that this wallet supports DescriptorScriptPubKeyMan
+ WALLET_FLAG_DESCRIPTORS = (1ULL << 34),
};
//! Get the path of the wallet directory.