diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-09-22 18:13:52 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-09-22 20:49:30 +0200 |
commit | fa14f57fbc3c1fa2b9eea5df687f0fb36d452bd5 (patch) | |
tree | 778e6a10e382e0539a687168ce3c5a4fd131a6f0 /src/wallet/rpcwallet.h | |
parent | d692d192cda37fda6359ad0736b85de20383db73 (diff) |
Assert that RPCArg names are equal to CRPCCommand ones (net, rpcwallet)
Diffstat (limited to 'src/wallet/rpcwallet.h')
-rw-r--r-- | src/wallet/rpcwallet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/rpcwallet.h b/src/wallet/rpcwallet.h index fb1e91282b..184a16e91d 100644 --- a/src/wallet/rpcwallet.h +++ b/src/wallet/rpcwallet.h @@ -34,6 +34,6 @@ void EnsureWalletIsUnlocked(const CWallet*); WalletContext& EnsureWalletContext(const util::Ref& context); LegacyScriptPubKeyMan& EnsureLegacyScriptPubKeyMan(CWallet& wallet, bool also_create = false); -UniValue getaddressinfo(const JSONRPCRequest& request); -UniValue signrawtransactionwithwallet(const JSONRPCRequest& request); +RPCHelpMan getaddressinfo(); +RPCHelpMan signrawtransactionwithwallet(); #endif //BITCOIN_WALLET_RPCWALLET_H |