aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpc/wallet.h
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-12-08 11:08:57 +0800
committerfanquake <fanquake@gmail.com>2021-12-08 11:34:30 +0800
commitfa3fb46b8172597cb64ff401b27f6c799fb832d7 (patch)
treef3e2e481c5e6dedc15ae81657c32c7954b4f86ee /src/wallet/rpc/wallet.h
parent0d101050efbd56d5a751f187c727b0f3d095057f (diff)
parentb36e738285b111a184c67fd845404850c34333a3 (diff)
downloadbitcoin-fa3fb46b8172597cb64ff401b27f6c799fb832d7.tar.xz
Merge bitcoin/bitcoin#23667: Split up rpcwallet
b36e738285b111a184c67fd845404850c34333a3 MOVEONLY: Move abortrescan from backup.cpp to transactions.cpp (Samuel Dobson) d794d0da8f05c66e4a81615c6de8c50f8bcdb5be Remove unused imports from rpc/wallet and reorder RPCs (Samuel Dobson) e116b9747d083bf269f1e1c67295b57d700d9dbd MOVEONLY: Move rpcwallet to rpc/wallet (Samuel Dobson) 8e30875fde99f5c03785fd5e1af929b194b3ffcf MOVEONLY: Move spending RPCs to spend.cpp (Samuel Dobson) 9ce521a61bb7db3c881fbb3534472a60985e19d6 MOVEONLY: Move balance and utxo RPCs to coins.cpp (Samuel Dobson) 7b45f5c0591935ef195fa4a8a7bbc38c7d7c5a76 MOVEONLY: Move address related functions from rpcwallet to addresses.cpp (Samuel Dobson) f7646b407ff209c8909157f592aeef79b0be7cb1 MOVEONLY: Move transaction related wallet RPCs to transactions.cpp (Samuel Dobson) Pull request description: This is the rest of #23622, to split up rpcwallet into smaller, more logical parts. This will have a lot of conflicts but let's just get it over and done with. ACKs for top commit: achow101: ACK b36e738285b111a184c67fd845404850c34333a3 ryanofsky: Code review ACK b36e738285b111a184c67fd845404850c34333a3, verified move-only again Tree-SHA512: 6695fa23bbe9822c7497db7660f44c3dcb01dfa7276f5830a6b7c73c6b5fa04e04fcd4821bf0e6392e7659ed91a277ced85bd8f77477d785bca4e84a93fe791e
Diffstat (limited to 'src/wallet/rpc/wallet.h')
-rw-r--r--src/wallet/rpc/wallet.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/wallet/rpc/wallet.h b/src/wallet/rpc/wallet.h
new file mode 100644
index 0000000000..cdc9a8cc92
--- /dev/null
+++ b/src/wallet/rpc/wallet.h
@@ -0,0 +1,14 @@
+// Copyright (c) 2016-2020 The Bitcoin Core developers
+// Distributed under the MIT software license, see the accompanying
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+#ifndef BITCOIN_WALLET_RPC_WALLET_H
+#define BITCOIN_WALLET_RPC_WALLET_H
+
+#include <span.h>
+
+class CRPCCommand;
+
+Span<const CRPCCommand> GetWalletRPCCommands();
+
+#endif // BITCOIN_WALLET_RPC_WALLET_H