mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Rename scriptutils.o to wallet_ismine.o
This commit is contained in:
parent
8b59a3d366
commit
c1e433b717
@ -103,7 +103,7 @@ BITCOIN_CORE_H = \
|
|||||||
script/script.h \
|
script/script.h \
|
||||||
script/sign.h \
|
script/sign.h \
|
||||||
script/standard.h \
|
script/standard.h \
|
||||||
scriptutils.h \
|
wallet_ismine.h \
|
||||||
serialize.h \
|
serialize.h \
|
||||||
sync.h \
|
sync.h \
|
||||||
threadsafety.h \
|
threadsafety.h \
|
||||||
@ -173,7 +173,7 @@ libbitcoin_wallet_a_SOURCES = \
|
|||||||
crypter.cpp \
|
crypter.cpp \
|
||||||
rpcdump.cpp \
|
rpcdump.cpp \
|
||||||
rpcwallet.cpp \
|
rpcwallet.cpp \
|
||||||
scriptutils.cpp \
|
wallet_ismine.cpp \
|
||||||
wallet.cpp \
|
wallet.cpp \
|
||||||
walletdb.cpp \
|
walletdb.cpp \
|
||||||
$(BITCOIN_CORE_H)
|
$(BITCOIN_CORE_H)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include "uint256.h"
|
#include "uint256.h"
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "scriptutils.h"
|
#include "wallet_ismine.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/assign/std/vector.hpp>
|
#include <boost/assign/std/vector.hpp>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#include "script/sign.h"
|
#include "script/sign.h"
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "scriptutils.h"
|
#include "wallet_ismine.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include "key.h"
|
#include "key.h"
|
||||||
#include "keystore.h"
|
#include "keystore.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "scriptutils.h"
|
#include "wallet_ismine.h"
|
||||||
#include "ui_interface.h"
|
#include "ui_interface.h"
|
||||||
#include "walletdb.h"
|
#include "walletdb.h"
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include "scriptutils.h"
|
#include "wallet_ismine.h"
|
||||||
|
|
||||||
#include "key.h"
|
#include "key.h"
|
||||||
#include "keystore.h"
|
#include "keystore.h"
|
@ -3,8 +3,8 @@
|
|||||||
// Distributed under the MIT/X11 software license, see the accompanying
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef H_BITCOIN_SCRIPTUTILS
|
#ifndef H_BITCOIN_WALLET_ISMINE
|
||||||
#define H_BITCOIN_SCRIPTUTILS
|
#define H_BITCOIN_WALLET_ISMINE
|
||||||
|
|
||||||
#include "key.h"
|
#include "key.h"
|
||||||
#include "script/script.h"
|
#include "script/script.h"
|
Loading…
Reference in New Issue
Block a user