diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-08-04 17:55:31 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2021-02-23 14:34:30 +0100 |
commit | 157ea7c614950d61bfe405310e2aaabcee31f7a3 (patch) | |
tree | b1067774d7bc1f3a8b8acbff4710641d0de94900 /src/wallet/walletutil.h | |
parent | f3e6ce78fba2b31173fe7b606aa9edb5b615bff3 (diff) |
wallet: add external_signer flag
Diffstat (limited to 'src/wallet/walletutil.h')
-rw-r--r-- | src/wallet/walletutil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/walletutil.h b/src/wallet/walletutil.h index 67b2ee2b98..0713f768c1 100644 --- a/src/wallet/walletutil.h +++ b/src/wallet/walletutil.h @@ -60,6 +60,9 @@ enum WalletFlags : uint64_t { //! Indicate that this wallet supports DescriptorScriptPubKeyMan WALLET_FLAG_DESCRIPTORS = (1ULL << 34), + + //! Indicates that the wallet needs an external signer + WALLET_FLAG_EXTERNAL_SIGNER = (1ULL << 35), }; //! Get the path of the wallet directory. |