MOVEONLY: Move rpcwallet to rpc/wallet

pull/826/head
Samuel Dobson 3 years ago
parent 8e30875fde
commit e116b9747d

@ -282,8 +282,8 @@ BITCOIN_CORE_H = \
wallet/ismine.h \
wallet/load.h \
wallet/receive.h \
wallet/rpcwallet.h \
wallet/rpc/util.h \
wallet/rpc/wallet.h \
wallet/salvage.h \
wallet/scriptpubkeyman.h \
wallet/spend.h \
@ -418,7 +418,7 @@ libbitcoin_wallet_a_SOURCES = \
wallet/rpc/signmessage.cpp \
wallet/rpc/transactions.cpp \
wallet/rpc/util.cpp \
wallet/rpcwallet.cpp \
wallet/rpc/wallet.cpp \
wallet/scriptpubkeyman.cpp \
wallet/spend.cpp \
wallet/transaction.cpp \

@ -24,7 +24,7 @@
#include <wallet/ismine.h>
#include <wallet/load.h>
#include <wallet/receive.h>
#include <wallet/rpcwallet.h>
#include <wallet/rpc/wallet.h>
#include <wallet/spend.h>
#include <wallet/wallet.h>

@ -22,7 +22,7 @@
#include <wallet/coincontrol.h>
#include <wallet/load.h>
#include <wallet/receive.h>
#include <wallet/rpcwallet.h>
#include <wallet/rpc/wallet.h>
#include <wallet/rpc/util.h>
#include <wallet/wallet.h>
#include <wallet/walletdb.h>

@ -2,8 +2,8 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_WALLET_RPCWALLET_H
#define BITCOIN_WALLET_RPCWALLET_H
#ifndef BITCOIN_WALLET_RPC_WALLET_H
#define BITCOIN_WALLET_RPC_WALLET_H
#include <span.h>
@ -13,4 +13,4 @@ Span<const CRPCCommand> GetWalletRPCCommands();
RPCHelpMan getaddressinfo();
RPCHelpMan signrawtransactionwithwallet();
#endif // BITCOIN_WALLET_RPCWALLET_H
#endif // BITCOIN_WALLET_RPC_WALLET_H
Loading…
Cancel
Save