diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-09-16 17:53:32 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-09-16 17:53:32 -0400 |
commit | f19ad404631010a5e2dac2c7cbecd057b005fe2a (patch) | |
tree | aaa17c57d425d3b304ab6a9c94898f18203d7e97 | |
parent | 6ef84e0503994c53f77093e7ea5951a7b0edea7a (diff) |
rpc, wallet: Descriptor wallets are no longer experimental
-rw-r--r-- | src/wallet/rpcwallet.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index e922f4ede9..4b2aca3078 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2771,7 +2771,6 @@ static RPCHelpMan createwallet() throw JSONRPCError(RPC_WALLET_ERROR, "Compiled without sqlite support (required for descriptor wallets)"); #endif flags |= WALLET_FLAG_DESCRIPTORS; - warnings.emplace_back(Untranslated("Wallet is an experimental descriptor wallet")); } if (!request.params[7].isNull() && request.params[7].get_bool()) { #ifdef ENABLE_EXTERNAL_SIGNER |