Skip to content

Commit 7b04a06

Browse files
committed
Introduce wallet/rpc/util
1 parent aef8c7c commit 7b04a06

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

src/Makefile.am

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ BITCOIN_CORE_H = \
283283
wallet/load.h \
284284
wallet/receive.h \
285285
wallet/rpcwallet.h \
286+
wallet/rpc/util.h \
286287
wallet/salvage.h \
287288
wallet/scriptpubkeyman.h \
288289
wallet/spend.h \
@@ -410,6 +411,7 @@ libbitcoin_wallet_a_SOURCES = \
410411
wallet/load.cpp \
411412
wallet/receive.cpp \
412413
wallet/rpc/signmessage.cpp \
414+
wallet/rpc/util.cpp \
413415
wallet/rpcdump.cpp \
414416
wallet/rpcwallet.cpp \
415417
wallet/scriptpubkeyman.cpp \

src/wallet/rpc/util.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Copyright (c) 2011-2021 The Bitcoin Core developers
2+
// Distributed under the MIT software license, see the accompanying
3+
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4+
5+
#include <wallet/rpc/util.h>

src/wallet/rpc/util.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Copyright (c) 2017-2021 The Bitcoin Core developers
2+
// Distributed under the MIT software license, see the accompanying
3+
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4+
5+
#ifndef BITCOIN_WALLET_RPC_UTIL_H
6+
#define BITCOIN_WALLET_RPC_UTIL_H
7+
8+
9+
10+
#endif // BITCOIN_WALLET_RPC_UTIL_H

0 commit comments

Comments
 (0)