Skip to content

Commit e116b97

Browse files
committed
MOVEONLY: Move rpcwallet to rpc/wallet
1 parent 8e30875 commit e116b97

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ BITCOIN_CORE_H = \
282282
wallet/ismine.h \
283283
wallet/load.h \
284284
wallet/receive.h \
285-
wallet/rpcwallet.h \
286285
wallet/rpc/util.h \
286+
wallet/rpc/wallet.h \
287287
wallet/salvage.h \
288288
wallet/scriptpubkeyman.h \
289289
wallet/spend.h \
@@ -418,7 +418,7 @@ libbitcoin_wallet_a_SOURCES = \
418418
wallet/rpc/signmessage.cpp \
419419
wallet/rpc/transactions.cpp \
420420
wallet/rpc/util.cpp \
421-
wallet/rpcwallet.cpp \
421+
wallet/rpc/wallet.cpp \
422422
wallet/scriptpubkeyman.cpp \
423423
wallet/spend.cpp \
424424
wallet/transaction.cpp \

src/wallet/interfaces.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <wallet/ismine.h>
2525
#include <wallet/load.h>
2626
#include <wallet/receive.h>
27-
#include <wallet/rpcwallet.h>
27+
#include <wallet/rpc/wallet.h>
2828
#include <wallet/spend.h>
2929
#include <wallet/wallet.h>
3030

src/wallet/rpcwallet.cpp renamed to src/wallet/rpc/wallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <wallet/coincontrol.h>
2323
#include <wallet/load.h>
2424
#include <wallet/receive.h>
25-
#include <wallet/rpcwallet.h>
25+
#include <wallet/rpc/wallet.h>
2626
#include <wallet/rpc/util.h>
2727
#include <wallet/wallet.h>
2828
#include <wallet/walletdb.h>

src/wallet/rpcwallet.h renamed to src/wallet/rpc/wallet.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5-
#ifndef BITCOIN_WALLET_RPCWALLET_H
6-
#define BITCOIN_WALLET_RPCWALLET_H
5+
#ifndef BITCOIN_WALLET_RPC_WALLET_H
6+
#define BITCOIN_WALLET_RPC_WALLET_H
77

88
#include <span.h>
99

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

1414
RPCHelpMan getaddressinfo();
1515
RPCHelpMan signrawtransactionwithwallet();
16-
#endif // BITCOIN_WALLET_RPCWALLET_H
16+
#endif // BITCOIN_WALLET_RPC_WALLET_H

0 commit comments

Comments
 (0)