Skip to content

Commit

Permalink
MOVEONLY: Move rpcwallet to rpc/wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
meshcollider committed Dec 7, 2021
1 parent 8e30875 commit e116b97
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/wallet/interfaces.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
2 changes: 1 addition & 1 deletion src/wallet/rpcwallet.cpp → src/wallet/rpc/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
6 changes: 3 additions & 3 deletions src/wallet/rpcwallet.h → src/wallet/rpc/wallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -13,4 +13,4 @@ Span<const CRPCCommand> GetWalletRPCCommands();

RPCHelpMan getaddressinfo();
RPCHelpMan signrawtransactionwithwallet();
#endif // BITCOIN_WALLET_RPCWALLET_H
#endif // BITCOIN_WALLET_RPC_WALLET_H

0 comments on commit e116b97

Please sign in to comment.