mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 02:25:40 +01:00
Introduce wallet/rpc/util
This commit is contained in:
parent
aef8c7cf82
commit
7b04a064f6
@ -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
5
src/wallet/rpc/util.cpp
Normal 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
10
src/wallet/rpc/util.h
Normal 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
|
Loading…
Reference in New Issue
Block a user