Introduce wallet/rpc/util

This commit is contained in:
Samuel Dobson 2021-12-01 13:10:43 +13:00
parent aef8c7cf82
commit 7b04a064f6
3 changed files with 17 additions and 0 deletions

View File

@ -283,6 +283,7 @@ BITCOIN_CORE_H = \
wallet/load.h \
wallet/receive.h \
wallet/rpcwallet.h \
wallet/rpc/util.h \
wallet/salvage.h \
wallet/scriptpubkeyman.h \
wallet/spend.h \
@ -410,6 +411,7 @@ libbitcoin_wallet_a_SOURCES = \
wallet/load.cpp \
wallet/receive.cpp \
wallet/rpc/signmessage.cpp \
wallet/rpc/util.cpp \
wallet/rpcdump.cpp \
wallet/rpcwallet.cpp \
wallet/scriptpubkeyman.cpp \

5
src/wallet/rpc/util.cpp Normal file
View File

@ -0,0 +1,5 @@
// Copyright (c) 2011-2021 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <wallet/rpc/util.h>

10
src/wallet/rpc/util.h Normal file
View File

@ -0,0 +1,10 @@
// Copyright (c) 2017-2021 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_UTIL_H
#define BITCOIN_WALLET_RPC_UTIL_H
#endif // BITCOIN_WALLET_RPC_UTIL_H