Move scriptutils.o to wallet
This commit is contained in:
parent
6a8d15cc16
commit
0d2fa14a34
3 changed files with 20 additions and 2 deletions
|
@ -173,6 +173,7 @@ libbitcoin_wallet_a_SOURCES = \
|
||||||
crypter.cpp \
|
crypter.cpp \
|
||||||
rpcdump.cpp \
|
rpcdump.cpp \
|
||||||
rpcwallet.cpp \
|
rpcwallet.cpp \
|
||||||
|
scriptutils.cpp \
|
||||||
wallet.cpp \
|
wallet.cpp \
|
||||||
walletdb.cpp \
|
walletdb.cpp \
|
||||||
$(BITCOIN_CORE_H)
|
$(BITCOIN_CORE_H)
|
||||||
|
@ -216,7 +217,6 @@ libbitcoin_common_a_SOURCES = \
|
||||||
script/script.cpp \
|
script/script.cpp \
|
||||||
script/sign.cpp \
|
script/sign.cpp \
|
||||||
script/standard.cpp \
|
script/standard.cpp \
|
||||||
scriptutils.cpp \
|
|
||||||
$(BITCOIN_CORE_H)
|
$(BITCOIN_CORE_H)
|
||||||
|
|
||||||
# util: shared between all executables.
|
# util: shared between all executables.
|
||||||
|
|
|
@ -8,9 +8,12 @@
|
||||||
#include "script/script.h"
|
#include "script/script.h"
|
||||||
#include "script/interpreter.h"
|
#include "script/interpreter.h"
|
||||||
#include "script/sign.h"
|
#include "script/sign.h"
|
||||||
#include "scriptutils.h"
|
|
||||||
#include "uint256.h"
|
#include "uint256.h"
|
||||||
|
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
|
#include "scriptutils.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <boost/assign/std/vector.hpp>
|
#include <boost/assign/std/vector.hpp>
|
||||||
#include <boost/foreach.hpp>
|
#include <boost/foreach.hpp>
|
||||||
#include <boost/test/unit_test.hpp>
|
#include <boost/test/unit_test.hpp>
|
||||||
|
@ -195,8 +198,10 @@ BOOST_AUTO_TEST_CASE(multisig_Solver1)
|
||||||
CTxDestination addr;
|
CTxDestination addr;
|
||||||
BOOST_CHECK(ExtractDestination(s, addr));
|
BOOST_CHECK(ExtractDestination(s, addr));
|
||||||
BOOST_CHECK(addr == keyaddr[0]);
|
BOOST_CHECK(addr == keyaddr[0]);
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
BOOST_CHECK(IsMine(keystore, s));
|
BOOST_CHECK(IsMine(keystore, s));
|
||||||
BOOST_CHECK(!IsMine(emptykeystore, s));
|
BOOST_CHECK(!IsMine(emptykeystore, s));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
vector<valtype> solutions;
|
vector<valtype> solutions;
|
||||||
|
@ -208,8 +213,10 @@ BOOST_AUTO_TEST_CASE(multisig_Solver1)
|
||||||
CTxDestination addr;
|
CTxDestination addr;
|
||||||
BOOST_CHECK(ExtractDestination(s, addr));
|
BOOST_CHECK(ExtractDestination(s, addr));
|
||||||
BOOST_CHECK(addr == keyaddr[0]);
|
BOOST_CHECK(addr == keyaddr[0]);
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
BOOST_CHECK(IsMine(keystore, s));
|
BOOST_CHECK(IsMine(keystore, s));
|
||||||
BOOST_CHECK(!IsMine(emptykeystore, s));
|
BOOST_CHECK(!IsMine(emptykeystore, s));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
vector<valtype> solutions;
|
vector<valtype> solutions;
|
||||||
|
@ -220,9 +227,11 @@ BOOST_AUTO_TEST_CASE(multisig_Solver1)
|
||||||
BOOST_CHECK_EQUAL(solutions.size(), 4U);
|
BOOST_CHECK_EQUAL(solutions.size(), 4U);
|
||||||
CTxDestination addr;
|
CTxDestination addr;
|
||||||
BOOST_CHECK(!ExtractDestination(s, addr));
|
BOOST_CHECK(!ExtractDestination(s, addr));
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
BOOST_CHECK(IsMine(keystore, s));
|
BOOST_CHECK(IsMine(keystore, s));
|
||||||
BOOST_CHECK(!IsMine(emptykeystore, s));
|
BOOST_CHECK(!IsMine(emptykeystore, s));
|
||||||
BOOST_CHECK(!IsMine(partialkeystore, s));
|
BOOST_CHECK(!IsMine(partialkeystore, s));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
vector<valtype> solutions;
|
vector<valtype> solutions;
|
||||||
|
@ -237,9 +246,11 @@ BOOST_AUTO_TEST_CASE(multisig_Solver1)
|
||||||
BOOST_CHECK(addrs[0] == keyaddr[0]);
|
BOOST_CHECK(addrs[0] == keyaddr[0]);
|
||||||
BOOST_CHECK(addrs[1] == keyaddr[1]);
|
BOOST_CHECK(addrs[1] == keyaddr[1]);
|
||||||
BOOST_CHECK(nRequired == 1);
|
BOOST_CHECK(nRequired == 1);
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
BOOST_CHECK(IsMine(keystore, s));
|
BOOST_CHECK(IsMine(keystore, s));
|
||||||
BOOST_CHECK(!IsMine(emptykeystore, s));
|
BOOST_CHECK(!IsMine(emptykeystore, s));
|
||||||
BOOST_CHECK(!IsMine(partialkeystore, s));
|
BOOST_CHECK(!IsMine(partialkeystore, s));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
vector<valtype> solutions;
|
vector<valtype> solutions;
|
||||||
|
|
|
@ -7,7 +7,10 @@
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "script/script.h"
|
#include "script/script.h"
|
||||||
#include "script/sign.h"
|
#include "script/sign.h"
|
||||||
|
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
#include "scriptutils.h"
|
#include "scriptutils.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@ -95,7 +98,9 @@ BOOST_AUTO_TEST_CASE(sign)
|
||||||
txTo[i].vin[0].prevout.n = i;
|
txTo[i].vin[0].prevout.n = i;
|
||||||
txTo[i].vin[0].prevout.hash = txFrom.GetHash();
|
txTo[i].vin[0].prevout.hash = txFrom.GetHash();
|
||||||
txTo[i].vout[0].nValue = 1;
|
txTo[i].vout[0].nValue = 1;
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
BOOST_CHECK_MESSAGE(IsMine(keystore, txFrom.vout[i].scriptPubKey), strprintf("IsMine %d", i));
|
BOOST_CHECK_MESSAGE(IsMine(keystore, txFrom.vout[i].scriptPubKey), strprintf("IsMine %d", i));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
for (int i = 0; i < 8; i++)
|
for (int i = 0; i < 8; i++)
|
||||||
{
|
{
|
||||||
|
@ -189,7 +194,9 @@ BOOST_AUTO_TEST_CASE(set)
|
||||||
txTo[i].vin[0].prevout.hash = txFrom.GetHash();
|
txTo[i].vin[0].prevout.hash = txFrom.GetHash();
|
||||||
txTo[i].vout[0].nValue = 1*CENT;
|
txTo[i].vout[0].nValue = 1*CENT;
|
||||||
txTo[i].vout[0].scriptPubKey = inner[i];
|
txTo[i].vout[0].scriptPubKey = inner[i];
|
||||||
|
#ifdef ENABLE_WALLET
|
||||||
BOOST_CHECK_MESSAGE(IsMine(keystore, txFrom.vout[i].scriptPubKey), strprintf("IsMine %d", i));
|
BOOST_CHECK_MESSAGE(IsMine(keystore, txFrom.vout[i].scriptPubKey), strprintf("IsMine %d", i));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
for (int i = 0; i < 4; i++)
|
for (int i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue