Rename scriptutils.o to wallet_ismine.o

This commit is contained in:
jtimon 2014-08-30 13:40:37 +02:00 committed by Wladimir J. van der Laan
parent 8b59a3d366
commit c1e433b717
6 changed files with 8 additions and 8 deletions

View File

@ -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)

View File

@ -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>

View File

@ -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>

View File

@ -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"

View File

@ -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"

View File

@ -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"