Skip to content

Commit c1e433b

Browse files
jtimonlaanwj
authored andcommitted
Rename scriptutils.o to wallet_ismine.o
1 parent 8b59a3d commit c1e433b

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

src/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ BITCOIN_CORE_H = \
103103
script/script.h \
104104
script/sign.h \
105105
script/standard.h \
106-
scriptutils.h \
106+
wallet_ismine.h \
107107
serialize.h \
108108
sync.h \
109109
threadsafety.h \
@@ -173,7 +173,7 @@ libbitcoin_wallet_a_SOURCES = \
173173
crypter.cpp \
174174
rpcdump.cpp \
175175
rpcwallet.cpp \
176-
scriptutils.cpp \
176+
wallet_ismine.cpp \
177177
wallet.cpp \
178178
walletdb.cpp \
179179
$(BITCOIN_CORE_H)

src/test/multisig_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "uint256.h"
1212

1313
#ifdef ENABLE_WALLET
14-
#include "scriptutils.h"
14+
#include "wallet_ismine.h"
1515
#endif
1616

1717
#include <boost/assign/std/vector.hpp>

src/test/script_P2SH_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "script/sign.h"
1010

1111
#ifdef ENABLE_WALLET
12-
#include "scriptutils.h"
12+
#include "wallet_ismine.h"
1313
#endif
1414

1515
#include <vector>

src/wallet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "key.h"
1212
#include "keystore.h"
1313
#include "main.h"
14-
#include "scriptutils.h"
14+
#include "wallet_ismine.h"
1515
#include "ui_interface.h"
1616
#include "walletdb.h"
1717

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6-
#include "scriptutils.h"
6+
#include "wallet_ismine.h"
77

88
#include "key.h"
99
#include "keystore.h"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// Distributed under the MIT/X11 software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

6-
#ifndef H_BITCOIN_SCRIPTUTILS
7-
#define H_BITCOIN_SCRIPTUTILS
6+
#ifndef H_BITCOIN_WALLET_ISMINE
7+
#define H_BITCOIN_WALLET_ISMINE
88

99
#include "key.h"
1010
#include "script/script.h"

0 commit comments

Comments
 (0)