2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2012-2020 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 06:11:00 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <wallet/wallet.h>
|
2012-02-27 09:19:32 -03:00
|
|
|
|
2020-04-21 12:41:35 -04:00
|
|
|
#include <future>
|
2018-04-02 15:31:40 -03:00
|
|
|
#include <memory>
|
2013-04-13 02:13:08 -03:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-07-26 10:23:01 -04:00
|
|
|
#include <interfaces/chain.h>
|
2019-09-17 19:28:03 -03:00
|
|
|
#include <node/context.h>
|
2019-04-19 13:19:20 -04:00
|
|
|
#include <policy/policy.h>
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <rpc/server.h>
|
2020-04-21 12:41:35 -04:00
|
|
|
#include <test/util/logging.h>
|
2019-11-05 17:18:59 -03:00
|
|
|
#include <test/util/setup_common.h>
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <validation.h>
|
|
|
|
#include <wallet/coincontrol.h>
|
|
|
|
#include <wallet/test/wallet_test_fixture.h>
|
2015-03-09 11:04:12 -03:00
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2017-02-16 12:49:03 -03:00
|
|
|
#include <univalue.h>
|
|
|
|
|
|
|
|
extern UniValue importmulti(const JSONRPCRequest& request);
|
2017-05-16 11:34:28 -04:00
|
|
|
extern UniValue dumpwallet(const JSONRPCRequest& request);
|
|
|
|
extern UniValue importwallet(const JSONRPCRequest& request);
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2016-04-18 09:54:57 -03:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(wallet_tests, WalletTestingSetup)
|
2012-02-27 09:19:32 -03:00
|
|
|
|
2020-04-21 12:41:35 -04:00
|
|
|
static std::shared_ptr<CWallet> TestLoadWallet(interfaces::Chain& chain)
|
|
|
|
{
|
|
|
|
std::string error;
|
|
|
|
std::vector<std::string> warnings;
|
|
|
|
auto wallet = CWallet::CreateWalletFromFile(chain, WalletLocation(""), error, warnings);
|
|
|
|
wallet->postInitProcess();
|
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void TestUnloadWallet(std::shared_ptr<CWallet>&& wallet)
|
|
|
|
{
|
|
|
|
SyncWithValidationInterfaceQueue();
|
|
|
|
wallet->m_chain_notifications_handler.reset();
|
|
|
|
UnloadWallet(std::move(wallet));
|
|
|
|
}
|
|
|
|
|
|
|
|
static CMutableTransaction TestSimpleSpend(const CTransaction& from, uint32_t index, const CKey& key, const CScript& pubkey)
|
|
|
|
{
|
|
|
|
CMutableTransaction mtx;
|
|
|
|
mtx.vout.push_back({from.vout[index].nValue - DEFAULT_TRANSACTION_MAXFEE, pubkey});
|
|
|
|
mtx.vin.push_back({CTxIn{from.GetHash(), index}});
|
|
|
|
FillableSigningProvider keystore;
|
|
|
|
keystore.AddKey(key);
|
|
|
|
std::map<COutPoint, Coin> coins;
|
|
|
|
coins[mtx.vin[0].prevout].out = from.vout[index];
|
|
|
|
std::map<int, std::string> input_errors;
|
|
|
|
BOOST_CHECK(SignTransaction(mtx, &keystore, coins, SIGHASH_ALL, input_errors));
|
|
|
|
return mtx;
|
|
|
|
}
|
|
|
|
|
2017-08-24 15:12:21 -03:00
|
|
|
static void AddKey(CWallet& wallet, const CKey& key)
|
|
|
|
{
|
2019-10-07 15:11:34 -03:00
|
|
|
auto spk_man = wallet.GetOrCreateLegacyScriptPubKeyMan();
|
2019-10-07 15:11:34 -03:00
|
|
|
LOCK2(wallet.cs_wallet, spk_man->cs_KeyStore);
|
2019-10-07 15:11:34 -03:00
|
|
|
spk_man->AddKeyPubKey(key, key.GetPubKey());
|
2017-08-24 15:12:21 -03:00
|
|
|
}
|
|
|
|
|
2018-12-14 04:18:54 -03:00
|
|
|
BOOST_FIXTURE_TEST_CASE(scan_for_wallet_transactions, TestChain100Setup)
|
2017-02-16 12:49:03 -03:00
|
|
|
{
|
|
|
|
// Cap last block file size, and mine new block in a new block file.
|
2019-03-27 12:14:25 -03:00
|
|
|
CBlockIndex* oldTip = ::ChainActive().Tip();
|
2017-02-16 12:49:03 -03:00
|
|
|
GetBlockFileInfo(oldTip->GetBlockPos().nFile)->nSize = MAX_BLOCKFILE_SIZE;
|
|
|
|
CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
|
2019-03-27 12:14:25 -03:00
|
|
|
CBlockIndex* newTip = ::ChainActive().Tip();
|
2017-02-16 12:49:03 -03:00
|
|
|
|
2019-09-17 19:28:03 -03:00
|
|
|
NodeContext node;
|
|
|
|
auto chain = interfaces::MakeChain(node);
|
2017-07-26 10:23:01 -04:00
|
|
|
auto locked_chain = chain->lock();
|
2019-05-16 09:10:38 -04:00
|
|
|
LockAssertion lock(::cs_main);
|
2017-12-04 20:25:57 -03:00
|
|
|
|
2020-01-22 18:53:42 -03:00
|
|
|
// Verify ScanForWalletTransactions fails to read an unknown start block.
|
2018-12-14 04:18:54 -03:00
|
|
|
{
|
2019-03-22 01:24:55 -03:00
|
|
|
CWallet wallet(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2019-04-20 12:02:52 -04:00
|
|
|
{
|
|
|
|
LOCK(wallet.cs_wallet);
|
|
|
|
wallet.SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
|
|
|
}
|
2018-12-14 04:18:54 -03:00
|
|
|
AddKey(wallet, coinbaseKey);
|
2020-04-11 19:42:15 -04:00
|
|
|
WalletRescanReserver reserver(wallet);
|
2018-12-14 04:18:54 -03:00
|
|
|
reserver.reserve();
|
2020-01-22 18:53:42 -03:00
|
|
|
CWallet::ScanResult result = wallet.ScanForWalletTransactions({} /* start_block */, 0 /* start_height */, {} /* max_height */, reserver, false /* update */);
|
|
|
|
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::FAILURE);
|
2019-01-31 19:42:56 -03:00
|
|
|
BOOST_CHECK(result.last_failed_block.IsNull());
|
|
|
|
BOOST_CHECK(result.last_scanned_block.IsNull());
|
|
|
|
BOOST_CHECK(!result.last_scanned_height);
|
2019-03-11 17:12:58 -03:00
|
|
|
BOOST_CHECK_EQUAL(wallet.GetBalance().m_mine_immature, 0);
|
2018-12-14 04:18:54 -03:00
|
|
|
}
|
|
|
|
|
2017-02-16 12:49:03 -03:00
|
|
|
// Verify ScanForWalletTransactions picks up transactions in both the old
|
|
|
|
// and new block files.
|
|
|
|
{
|
2019-03-22 01:24:55 -03:00
|
|
|
CWallet wallet(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2019-04-20 12:02:52 -04:00
|
|
|
{
|
|
|
|
LOCK(wallet.cs_wallet);
|
|
|
|
wallet.SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
|
|
|
}
|
2017-08-24 15:12:21 -03:00
|
|
|
AddKey(wallet, coinbaseKey);
|
2020-04-11 19:42:15 -04:00
|
|
|
WalletRescanReserver reserver(wallet);
|
2017-12-12 20:13:58 -03:00
|
|
|
reserver.reserve();
|
2020-01-22 18:53:42 -03:00
|
|
|
CWallet::ScanResult result = wallet.ScanForWalletTransactions(oldTip->GetBlockHash(), oldTip->nHeight, {} /* max_height */, reserver, false /* update */);
|
2019-01-08 04:38:53 -03:00
|
|
|
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::SUCCESS);
|
2019-01-31 19:42:56 -03:00
|
|
|
BOOST_CHECK(result.last_failed_block.IsNull());
|
|
|
|
BOOST_CHECK_EQUAL(result.last_scanned_block, newTip->GetBlockHash());
|
|
|
|
BOOST_CHECK_EQUAL(*result.last_scanned_height, newTip->nHeight);
|
2019-03-11 17:12:58 -03:00
|
|
|
BOOST_CHECK_EQUAL(wallet.GetBalance().m_mine_immature, 100 * COIN);
|
2017-02-16 12:49:03 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Prune the older block file.
|
|
|
|
PruneOneBlockFile(oldTip->GetBlockPos().nFile);
|
|
|
|
UnlinkPrunedFiles({oldTip->GetBlockPos().nFile});
|
|
|
|
|
|
|
|
// Verify ScanForWalletTransactions only picks transactions in the new block
|
|
|
|
// file.
|
|
|
|
{
|
2019-03-22 01:24:55 -03:00
|
|
|
CWallet wallet(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2019-04-20 12:02:52 -04:00
|
|
|
{
|
|
|
|
LOCK(wallet.cs_wallet);
|
|
|
|
wallet.SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
|
|
|
}
|
2017-08-24 15:12:21 -03:00
|
|
|
AddKey(wallet, coinbaseKey);
|
2020-04-11 19:42:15 -04:00
|
|
|
WalletRescanReserver reserver(wallet);
|
2017-12-12 20:13:58 -03:00
|
|
|
reserver.reserve();
|
2020-01-22 18:53:42 -03:00
|
|
|
CWallet::ScanResult result = wallet.ScanForWalletTransactions(oldTip->GetBlockHash(), oldTip->nHeight, {} /* max_height */, reserver, false /* update */);
|
2019-01-08 04:38:53 -03:00
|
|
|
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::FAILURE);
|
2019-01-31 19:42:56 -03:00
|
|
|
BOOST_CHECK_EQUAL(result.last_failed_block, oldTip->GetBlockHash());
|
|
|
|
BOOST_CHECK_EQUAL(result.last_scanned_block, newTip->GetBlockHash());
|
|
|
|
BOOST_CHECK_EQUAL(*result.last_scanned_height, newTip->nHeight);
|
2019-03-11 17:12:58 -03:00
|
|
|
BOOST_CHECK_EQUAL(wallet.GetBalance().m_mine_immature, 50 * COIN);
|
2017-02-16 12:49:03 -03:00
|
|
|
}
|
|
|
|
|
2018-12-14 04:18:54 -03:00
|
|
|
// Prune the remaining block file.
|
|
|
|
PruneOneBlockFile(newTip->GetBlockPos().nFile);
|
|
|
|
UnlinkPrunedFiles({newTip->GetBlockPos().nFile});
|
|
|
|
|
|
|
|
// Verify ScanForWalletTransactions scans no blocks.
|
|
|
|
{
|
2019-03-22 01:24:55 -03:00
|
|
|
CWallet wallet(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2019-04-20 12:02:52 -04:00
|
|
|
{
|
|
|
|
LOCK(wallet.cs_wallet);
|
|
|
|
wallet.SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
|
|
|
}
|
2018-12-14 04:18:54 -03:00
|
|
|
AddKey(wallet, coinbaseKey);
|
2020-04-11 19:42:15 -04:00
|
|
|
WalletRescanReserver reserver(wallet);
|
2018-12-14 04:18:54 -03:00
|
|
|
reserver.reserve();
|
2020-01-22 18:53:42 -03:00
|
|
|
CWallet::ScanResult result = wallet.ScanForWalletTransactions(oldTip->GetBlockHash(), oldTip->nHeight, {} /* max_height */, reserver, false /* update */);
|
2019-01-08 04:38:53 -03:00
|
|
|
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::FAILURE);
|
2019-01-31 19:42:56 -03:00
|
|
|
BOOST_CHECK_EQUAL(result.last_failed_block, newTip->GetBlockHash());
|
|
|
|
BOOST_CHECK(result.last_scanned_block.IsNull());
|
|
|
|
BOOST_CHECK(!result.last_scanned_height);
|
2019-03-11 17:12:58 -03:00
|
|
|
BOOST_CHECK_EQUAL(wallet.GetBalance().m_mine_immature, 0);
|
2018-12-14 04:18:54 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_CASE(importmulti_rescan, TestChain100Setup)
|
|
|
|
{
|
|
|
|
// Cap last block file size, and mine new block in a new block file.
|
2019-03-27 12:14:25 -03:00
|
|
|
CBlockIndex* oldTip = ::ChainActive().Tip();
|
2018-12-14 04:18:54 -03:00
|
|
|
GetBlockFileInfo(oldTip->GetBlockPos().nFile)->nSize = MAX_BLOCKFILE_SIZE;
|
|
|
|
CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
|
2019-03-27 12:14:25 -03:00
|
|
|
CBlockIndex* newTip = ::ChainActive().Tip();
|
2018-12-14 04:18:54 -03:00
|
|
|
|
2019-09-17 19:28:03 -03:00
|
|
|
NodeContext node;
|
|
|
|
auto chain = interfaces::MakeChain(node);
|
2018-12-14 04:18:54 -03:00
|
|
|
auto locked_chain = chain->lock();
|
2019-05-16 09:10:38 -04:00
|
|
|
LockAssertion lock(::cs_main);
|
2018-12-14 04:18:54 -03:00
|
|
|
|
|
|
|
// Prune the older block file.
|
|
|
|
PruneOneBlockFile(oldTip->GetBlockPos().nFile);
|
|
|
|
UnlinkPrunedFiles({oldTip->GetBlockPos().nFile});
|
|
|
|
|
2017-02-22 16:11:44 -03:00
|
|
|
// Verify importmulti RPC returns failure for a key whose creation time is
|
|
|
|
// before the missing block, and success for a key whose creation time is
|
|
|
|
// after.
|
2017-02-16 12:49:03 -03:00
|
|
|
{
|
2019-03-22 01:24:55 -03:00
|
|
|
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2019-10-07 15:11:34 -03:00
|
|
|
wallet->SetupLegacyScriptPubKeyMan();
|
2020-01-16 18:47:00 -03:00
|
|
|
WITH_LOCK(wallet->cs_wallet, wallet->SetLastBlockProcessed(newTip->nHeight, newTip->GetBlockHash()));
|
2018-05-22 11:18:07 -04:00
|
|
|
AddWallet(wallet);
|
2017-02-22 16:11:44 -03:00
|
|
|
UniValue keys;
|
|
|
|
keys.setArray();
|
2017-02-16 12:49:03 -03:00
|
|
|
UniValue key;
|
|
|
|
key.setObject();
|
|
|
|
key.pushKV("scriptPubKey", HexStr(GetScriptForRawPubKey(coinbaseKey.GetPubKey())));
|
|
|
|
key.pushKV("timestamp", 0);
|
|
|
|
key.pushKV("internal", UniValue(true));
|
2017-02-22 16:11:44 -03:00
|
|
|
keys.push_back(key);
|
|
|
|
key.clear();
|
|
|
|
key.setObject();
|
|
|
|
CKey futureKey;
|
|
|
|
futureKey.MakeNewKey(true);
|
|
|
|
key.pushKV("scriptPubKey", HexStr(GetScriptForRawPubKey(futureKey.GetPubKey())));
|
2017-05-15 09:11:03 -04:00
|
|
|
key.pushKV("timestamp", newTip->GetBlockTimeMax() + TIMESTAMP_WINDOW + 1);
|
2017-02-22 16:11:44 -03:00
|
|
|
key.pushKV("internal", UniValue(true));
|
2017-02-16 12:49:03 -03:00
|
|
|
keys.push_back(key);
|
|
|
|
JSONRPCRequest request;
|
|
|
|
request.params.setArray();
|
|
|
|
request.params.push_back(keys);
|
|
|
|
|
|
|
|
UniValue response = importmulti(request);
|
2017-05-15 09:11:03 -04:00
|
|
|
BOOST_CHECK_EQUAL(response.write(),
|
|
|
|
strprintf("[{\"success\":false,\"error\":{\"code\":-1,\"message\":\"Rescan failed for key with creation "
|
|
|
|
"timestamp %d. There was an error reading a block from time %d, which is after or within %d "
|
|
|
|
"seconds of key creation, and could contain transactions pertaining to the key. As a result, "
|
|
|
|
"transactions and coins using this key may not appear in the wallet. This error could be caused "
|
|
|
|
"by pruning or data corruption (see bitcoind log for details) and could be dealt with by "
|
|
|
|
"downloading and rescanning the relevant blocks (see -reindex and -rescan "
|
|
|
|
"options).\"}},{\"success\":true}]",
|
|
|
|
0, oldTip->GetBlockTimeMax(), TIMESTAMP_WINDOW));
|
2018-05-22 11:18:07 -04:00
|
|
|
RemoveWallet(wallet);
|
2017-02-16 12:49:03 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-16 11:34:28 -04:00
|
|
|
// Verify importwallet RPC starts rescan at earliest block with timestamp
|
|
|
|
// greater or equal than key birthday. Previously there was a bug where
|
|
|
|
// importwallet RPC would start the scan at the latest block with timestamp less
|
|
|
|
// than or equal to key birthday.
|
|
|
|
BOOST_FIXTURE_TEST_CASE(importwallet_rescan, TestChain100Setup)
|
|
|
|
{
|
|
|
|
// Create two blocks with same timestamp to verify that importwallet rescan
|
|
|
|
// will pick up both blocks, not just the first.
|
2019-03-27 12:14:25 -03:00
|
|
|
const int64_t BLOCK_TIME = ::ChainActive().Tip()->GetBlockTimeMax() + 5;
|
2017-05-16 11:34:28 -04:00
|
|
|
SetMockTime(BLOCK_TIME);
|
2018-04-11 14:51:28 -03:00
|
|
|
m_coinbase_txns.emplace_back(CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey())).vtx[0]);
|
|
|
|
m_coinbase_txns.emplace_back(CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey())).vtx[0]);
|
2017-05-16 11:34:28 -04:00
|
|
|
|
|
|
|
// Set key birthday to block time increased by the timestamp window, so
|
|
|
|
// rescan will start at the block time.
|
|
|
|
const int64_t KEY_TIME = BLOCK_TIME + TIMESTAMP_WINDOW;
|
|
|
|
SetMockTime(KEY_TIME);
|
2018-04-11 14:51:28 -03:00
|
|
|
m_coinbase_txns.emplace_back(CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey())).vtx[0]);
|
2017-05-16 11:34:28 -04:00
|
|
|
|
2019-09-17 19:28:03 -03:00
|
|
|
NodeContext node;
|
|
|
|
auto chain = interfaces::MakeChain(node);
|
2017-07-26 10:23:01 -04:00
|
|
|
auto locked_chain = chain->lock();
|
2019-05-16 09:10:38 -04:00
|
|
|
LockAssertion lock(::cs_main);
|
2017-12-04 20:25:57 -03:00
|
|
|
|
2019-06-19 17:52:35 -04:00
|
|
|
std::string backup_file = (GetDataDir() / "wallet.backup").string();
|
2018-07-11 23:44:12 -04:00
|
|
|
|
2017-05-16 11:34:28 -04:00
|
|
|
// Import key into wallet and call dumpwallet to create backup file.
|
|
|
|
{
|
2019-03-22 01:24:55 -03:00
|
|
|
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2020-04-16 12:04:56 -04:00
|
|
|
{
|
|
|
|
auto spk_man = wallet->GetOrCreateLegacyScriptPubKeyMan();
|
|
|
|
LOCK2(wallet->cs_wallet, spk_man->cs_KeyStore);
|
|
|
|
spk_man->mapKeyMetadata[coinbaseKey.GetPubKey().GetID()].nCreateTime = KEY_TIME;
|
|
|
|
spk_man->AddKeyPubKey(coinbaseKey, coinbaseKey.GetPubKey());
|
2017-05-16 11:34:28 -04:00
|
|
|
|
2020-04-16 12:04:56 -04:00
|
|
|
AddWallet(wallet);
|
|
|
|
wallet->SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
|
|
|
}
|
2017-05-16 11:34:28 -04:00
|
|
|
JSONRPCRequest request;
|
|
|
|
request.params.setArray();
|
2018-07-11 23:44:12 -04:00
|
|
|
request.params.push_back(backup_file);
|
2020-04-16 12:04:56 -04:00
|
|
|
|
2017-05-16 11:34:28 -04:00
|
|
|
::dumpwallet(request);
|
2018-05-22 11:18:07 -04:00
|
|
|
RemoveWallet(wallet);
|
2017-05-16 11:34:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Call importwallet RPC and verify all blocks with timestamps >= BLOCK_TIME
|
|
|
|
// were scanned, and no prior blocks were scanned.
|
|
|
|
{
|
2019-03-22 01:24:55 -03:00
|
|
|
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2020-01-16 18:42:01 -03:00
|
|
|
LOCK(wallet->cs_wallet);
|
2019-10-07 15:11:34 -03:00
|
|
|
wallet->SetupLegacyScriptPubKeyMan();
|
2017-05-16 11:34:28 -04:00
|
|
|
|
|
|
|
JSONRPCRequest request;
|
|
|
|
request.params.setArray();
|
2018-07-11 23:44:12 -04:00
|
|
|
request.params.push_back(backup_file);
|
2018-05-22 11:18:07 -04:00
|
|
|
AddWallet(wallet);
|
2020-01-16 18:42:01 -03:00
|
|
|
wallet->SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
2017-05-16 11:34:28 -04:00
|
|
|
::importwallet(request);
|
2018-05-22 11:18:07 -04:00
|
|
|
RemoveWallet(wallet);
|
2017-05-16 11:34:28 -04:00
|
|
|
|
2018-05-22 11:18:07 -04:00
|
|
|
BOOST_CHECK_EQUAL(wallet->mapWallet.size(), 3U);
|
2018-04-11 14:51:28 -03:00
|
|
|
BOOST_CHECK_EQUAL(m_coinbase_txns.size(), 103U);
|
|
|
|
for (size_t i = 0; i < m_coinbase_txns.size(); ++i) {
|
2018-05-22 11:18:07 -04:00
|
|
|
bool found = wallet->GetWalletTx(m_coinbase_txns[i]->GetHash());
|
2017-05-16 11:34:28 -04:00
|
|
|
bool expected = i >= 100;
|
|
|
|
BOOST_CHECK_EQUAL(found, expected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SetMockTime(0);
|
|
|
|
}
|
|
|
|
|
2016-12-15 23:37:25 -03:00
|
|
|
// Check that GetImmatureCredit() returns a newly calculated value instead of
|
|
|
|
// the cached value after a MarkDirty() call.
|
|
|
|
//
|
|
|
|
// This is a regression test written to verify a bugfix for the immature credit
|
|
|
|
// function. Similar tests probably should be written for the other credit and
|
|
|
|
// debit functions.
|
|
|
|
BOOST_FIXTURE_TEST_CASE(coin_mark_dirty_immature_credit, TestChain100Setup)
|
|
|
|
{
|
2019-09-17 19:28:03 -03:00
|
|
|
NodeContext node;
|
|
|
|
auto chain = interfaces::MakeChain(node);
|
2019-04-19 13:19:20 -04:00
|
|
|
|
2019-03-22 01:24:55 -03:00
|
|
|
CWallet wallet(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2019-10-07 15:11:34 -03:00
|
|
|
auto spk_man = wallet.GetOrCreateLegacyScriptPubKeyMan();
|
2018-04-11 14:51:28 -03:00
|
|
|
CWalletTx wtx(&wallet, m_coinbase_txns.back());
|
2019-04-19 13:19:20 -04:00
|
|
|
|
2017-07-26 10:23:01 -04:00
|
|
|
auto locked_chain = chain->lock();
|
2019-05-16 09:10:38 -04:00
|
|
|
LockAssertion lock(::cs_main);
|
2019-10-07 15:11:34 -03:00
|
|
|
LOCK2(wallet.cs_wallet, spk_man->cs_KeyStore);
|
2019-04-20 12:02:52 -04:00
|
|
|
wallet.SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
2019-04-19 13:19:20 -04:00
|
|
|
|
2019-04-20 11:22:59 -04:00
|
|
|
CWalletTx::Confirmation confirm(CWalletTx::Status::CONFIRMED, ::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash(), 0);
|
2019-10-24 13:53:57 -03:00
|
|
|
wtx.m_confirm = confirm;
|
2016-12-15 23:37:25 -03:00
|
|
|
|
|
|
|
// Call GetImmatureCredit() once before adding the key to the wallet to
|
|
|
|
// cache the current immature credit amount, which is 0.
|
2019-04-29 09:52:01 -04:00
|
|
|
BOOST_CHECK_EQUAL(wtx.GetImmatureCredit(), 0);
|
2016-12-15 23:37:25 -03:00
|
|
|
|
2019-10-07 15:11:34 -03:00
|
|
|
// Invalidate the cached value, add the key, and make sure a new immature
|
2016-12-15 23:37:25 -03:00
|
|
|
// credit amount is calculated.
|
|
|
|
wtx.MarkDirty();
|
2019-10-07 15:11:34 -03:00
|
|
|
BOOST_CHECK(spk_man->AddKeyPubKey(coinbaseKey, coinbaseKey.GetPubKey()));
|
2019-04-29 09:52:01 -04:00
|
|
|
BOOST_CHECK_EQUAL(wtx.GetImmatureCredit(), 50*COIN);
|
2016-12-15 23:37:25 -03:00
|
|
|
}
|
|
|
|
|
2017-02-10 16:27:27 -03:00
|
|
|
static int64_t AddTx(CWallet& wallet, uint32_t lockTime, int64_t mockTime, int64_t blockTime)
|
|
|
|
{
|
|
|
|
CMutableTransaction tx;
|
|
|
|
tx.nLockTime = lockTime;
|
|
|
|
SetMockTime(mockTime);
|
|
|
|
CBlockIndex* block = nullptr;
|
|
|
|
if (blockTime > 0) {
|
2017-07-26 10:23:01 -04:00
|
|
|
auto locked_chain = wallet.chain().lock();
|
2019-05-16 09:10:38 -04:00
|
|
|
LockAssertion lock(::cs_main);
|
2019-04-10 14:34:46 -04:00
|
|
|
auto inserted = ::BlockIndex().emplace(GetRandHash(), new CBlockIndex);
|
2017-02-10 16:27:27 -03:00
|
|
|
assert(inserted.second);
|
|
|
|
const uint256& hash = inserted.first->first;
|
|
|
|
block = inserted.first->second;
|
|
|
|
block->nTime = blockTime;
|
|
|
|
block->phashBlock = &hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
CWalletTx wtx(&wallet, MakeTransactionRef(tx));
|
2019-08-12 18:12:12 -04:00
|
|
|
LOCK(cs_main);
|
|
|
|
LOCK(wallet.cs_wallet);
|
|
|
|
// If transaction is already in map, to avoid inconsistencies, unconfirmation
|
|
|
|
// is needed before confirm again with different block.
|
|
|
|
std::map<uint256, CWalletTx>::iterator it = wallet.mapWallet.find(wtx.GetHash());
|
|
|
|
if (it != wallet.mapWallet.end()) {
|
|
|
|
wtx.setUnconfirmed();
|
2018-03-13 19:33:17 -03:00
|
|
|
wallet.AddToWallet(wtx);
|
|
|
|
}
|
2019-08-12 18:12:12 -04:00
|
|
|
if (block) {
|
2019-04-20 11:22:59 -04:00
|
|
|
CWalletTx::Confirmation confirm(CWalletTx::Status::CONFIRMED, block->nHeight, block->GetBlockHash(), 0);
|
2019-10-24 13:53:57 -03:00
|
|
|
wtx.m_confirm = confirm;
|
2019-08-12 18:12:12 -04:00
|
|
|
}
|
|
|
|
wallet.AddToWallet(wtx);
|
2017-02-10 16:27:27 -03:00
|
|
|
return wallet.mapWallet.at(wtx.GetHash()).nTimeSmart;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Simple test to verify assignment of CWalletTx::nSmartTime value. Could be
|
|
|
|
// expanded to cover more corner cases of smart time logic.
|
|
|
|
BOOST_AUTO_TEST_CASE(ComputeTimeSmart)
|
|
|
|
{
|
|
|
|
// New transaction should use clock time if lower than block time.
|
2017-11-13 23:25:46 -03:00
|
|
|
BOOST_CHECK_EQUAL(AddTx(m_wallet, 1, 100, 120), 100);
|
2017-02-10 16:27:27 -03:00
|
|
|
|
|
|
|
// Test that updating existing transaction does not change smart time.
|
2017-11-13 23:25:46 -03:00
|
|
|
BOOST_CHECK_EQUAL(AddTx(m_wallet, 1, 200, 220), 100);
|
2017-02-10 16:27:27 -03:00
|
|
|
|
|
|
|
// New transaction should use clock time if there's no block time.
|
2017-11-13 23:25:46 -03:00
|
|
|
BOOST_CHECK_EQUAL(AddTx(m_wallet, 2, 300, 0), 300);
|
2017-02-10 16:27:27 -03:00
|
|
|
|
|
|
|
// New transaction should use block time if lower than clock time.
|
2017-11-13 23:25:46 -03:00
|
|
|
BOOST_CHECK_EQUAL(AddTx(m_wallet, 3, 420, 400), 400);
|
2017-02-10 16:27:27 -03:00
|
|
|
|
|
|
|
// New transaction should use latest entry time if higher than
|
|
|
|
// min(block time, clock time).
|
2017-11-13 23:25:46 -03:00
|
|
|
BOOST_CHECK_EQUAL(AddTx(m_wallet, 4, 500, 390), 400);
|
2017-02-10 16:27:27 -03:00
|
|
|
|
|
|
|
// If there are future entries, new transaction should use time of the
|
|
|
|
// newest entry that is no more than 300 seconds ahead of the clock time.
|
2017-11-13 23:25:46 -03:00
|
|
|
BOOST_CHECK_EQUAL(AddTx(m_wallet, 5, 50, 600), 300);
|
2017-02-10 16:27:27 -03:00
|
|
|
|
|
|
|
// Reset mock time for other tests.
|
|
|
|
SetMockTime(0);
|
|
|
|
}
|
|
|
|
|
2017-04-28 15:18:14 -03:00
|
|
|
BOOST_AUTO_TEST_CASE(LoadReceiveRequests)
|
|
|
|
{
|
2019-02-19 19:00:45 -03:00
|
|
|
CTxDestination dest = PKHash();
|
2017-11-13 23:25:46 -03:00
|
|
|
LOCK(m_wallet.cs_wallet);
|
2019-11-02 13:20:45 -03:00
|
|
|
WalletBatch batch{m_wallet.GetDatabase()};
|
|
|
|
m_wallet.AddDestData(batch, dest, "misc", "val_misc");
|
|
|
|
m_wallet.AddDestData(batch, dest, "rr0", "val_rr0");
|
|
|
|
m_wallet.AddDestData(batch, dest, "rr1", "val_rr1");
|
2017-04-28 15:18:14 -03:00
|
|
|
|
2017-11-13 23:25:46 -03:00
|
|
|
auto values = m_wallet.GetDestValues("rr");
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(values.size(), 2U);
|
2017-04-28 15:18:14 -03:00
|
|
|
BOOST_CHECK_EQUAL(values[0], "val_rr0");
|
|
|
|
BOOST_CHECK_EQUAL(values[1], "val_rr1");
|
|
|
|
}
|
|
|
|
|
2019-10-07 15:11:34 -03:00
|
|
|
// Test some watch-only LegacyScriptPubKeyMan methods by the procedure of loading (LoadWatchOnly),
|
2019-09-01 16:10:51 -04:00
|
|
|
// checking (HaveWatchOnly), getting (GetWatchPubKey) and removing (RemoveWatchOnly) a
|
|
|
|
// given PubKey, resp. its corresponding P2PK Script. Results of the the impact on
|
|
|
|
// the address -> PubKey map is dependent on whether the PubKey is a point on the curve
|
2019-10-07 15:11:34 -03:00
|
|
|
static void TestWatchOnlyPubKey(LegacyScriptPubKeyMan* spk_man, const CPubKey& add_pubkey)
|
2019-09-01 16:10:51 -04:00
|
|
|
{
|
|
|
|
CScript p2pk = GetScriptForRawPubKey(add_pubkey);
|
|
|
|
CKeyID add_address = add_pubkey.GetID();
|
|
|
|
CPubKey found_pubkey;
|
2019-10-07 15:11:34 -03:00
|
|
|
LOCK(spk_man->cs_KeyStore);
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
// all Scripts (i.e. also all PubKeys) are added to the general watch-only set
|
2019-10-07 15:11:34 -03:00
|
|
|
BOOST_CHECK(!spk_man->HaveWatchOnly(p2pk));
|
|
|
|
spk_man->LoadWatchOnly(p2pk);
|
|
|
|
BOOST_CHECK(spk_man->HaveWatchOnly(p2pk));
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
// only PubKeys on the curve shall be added to the watch-only address -> PubKey map
|
|
|
|
bool is_pubkey_fully_valid = add_pubkey.IsFullyValid();
|
|
|
|
if (is_pubkey_fully_valid) {
|
2019-10-07 15:11:34 -03:00
|
|
|
BOOST_CHECK(spk_man->GetWatchPubKey(add_address, found_pubkey));
|
2019-09-01 16:10:51 -04:00
|
|
|
BOOST_CHECK(found_pubkey == add_pubkey);
|
|
|
|
} else {
|
2019-10-07 15:11:34 -03:00
|
|
|
BOOST_CHECK(!spk_man->GetWatchPubKey(add_address, found_pubkey));
|
2019-09-01 16:10:51 -04:00
|
|
|
BOOST_CHECK(found_pubkey == CPubKey()); // passed key is unchanged
|
|
|
|
}
|
|
|
|
|
2019-10-07 15:11:34 -03:00
|
|
|
spk_man->RemoveWatchOnly(p2pk);
|
|
|
|
BOOST_CHECK(!spk_man->HaveWatchOnly(p2pk));
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
if (is_pubkey_fully_valid) {
|
2019-10-07 15:11:34 -03:00
|
|
|
BOOST_CHECK(!spk_man->GetWatchPubKey(add_address, found_pubkey));
|
2019-09-01 16:10:51 -04:00
|
|
|
BOOST_CHECK(found_pubkey == add_pubkey); // passed key is unchanged
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cryptographically invalidate a PubKey whilst keeping length and first byte
|
|
|
|
static void PollutePubKey(CPubKey& pubkey)
|
|
|
|
{
|
|
|
|
std::vector<unsigned char> pubkey_raw(pubkey.begin(), pubkey.end());
|
|
|
|
std::fill(pubkey_raw.begin()+1, pubkey_raw.end(), 0);
|
|
|
|
pubkey = CPubKey(pubkey_raw);
|
|
|
|
assert(!pubkey.IsFullyValid());
|
|
|
|
assert(pubkey.IsValid());
|
|
|
|
}
|
|
|
|
|
2019-10-07 15:11:34 -03:00
|
|
|
// Test watch-only logic for PubKeys
|
2019-09-01 16:10:51 -04:00
|
|
|
BOOST_AUTO_TEST_CASE(WatchOnlyPubKeys)
|
|
|
|
{
|
|
|
|
CKey key;
|
|
|
|
CPubKey pubkey;
|
2019-10-07 15:11:34 -03:00
|
|
|
LegacyScriptPubKeyMan* spk_man = m_wallet.GetOrCreateLegacyScriptPubKeyMan();
|
2019-09-01 16:10:51 -04:00
|
|
|
|
2019-10-07 15:11:34 -03:00
|
|
|
BOOST_CHECK(!spk_man->HaveWatchOnly());
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
// uncompressed valid PubKey
|
|
|
|
key.MakeNewKey(false);
|
|
|
|
pubkey = key.GetPubKey();
|
|
|
|
assert(!pubkey.IsCompressed());
|
2019-10-07 15:11:34 -03:00
|
|
|
TestWatchOnlyPubKey(spk_man, pubkey);
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
// uncompressed cryptographically invalid PubKey
|
|
|
|
PollutePubKey(pubkey);
|
2019-10-07 15:11:34 -03:00
|
|
|
TestWatchOnlyPubKey(spk_man, pubkey);
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
// compressed valid PubKey
|
|
|
|
key.MakeNewKey(true);
|
|
|
|
pubkey = key.GetPubKey();
|
|
|
|
assert(pubkey.IsCompressed());
|
2019-10-07 15:11:34 -03:00
|
|
|
TestWatchOnlyPubKey(spk_man, pubkey);
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
// compressed cryptographically invalid PubKey
|
|
|
|
PollutePubKey(pubkey);
|
2019-10-07 15:11:34 -03:00
|
|
|
TestWatchOnlyPubKey(spk_man, pubkey);
|
2019-09-01 16:10:51 -04:00
|
|
|
|
|
|
|
// invalid empty PubKey
|
|
|
|
pubkey = CPubKey();
|
2019-10-07 15:11:34 -03:00
|
|
|
TestWatchOnlyPubKey(spk_man, pubkey);
|
2019-09-01 16:10:51 -04:00
|
|
|
}
|
|
|
|
|
2017-04-28 15:18:14 -03:00
|
|
|
class ListCoinsTestingSetup : public TestChain100Setup
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ListCoinsTestingSetup()
|
|
|
|
{
|
|
|
|
CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
|
2019-03-22 01:24:55 -03:00
|
|
|
wallet = MakeUnique<CWallet>(m_chain.get(), WalletLocation(), WalletDatabase::CreateMock());
|
2019-04-20 12:02:52 -04:00
|
|
|
{
|
2020-01-29 11:57:56 -03:00
|
|
|
LOCK2(::cs_main, wallet->cs_wallet);
|
2019-04-20 12:02:52 -04:00
|
|
|
wallet->SetLastBlockProcessed(::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash());
|
|
|
|
}
|
2017-04-28 15:18:14 -03:00
|
|
|
bool firstRun;
|
|
|
|
wallet->LoadWallet(firstRun);
|
2017-08-24 15:12:21 -03:00
|
|
|
AddKey(*wallet, coinbaseKey);
|
2020-04-11 19:42:15 -04:00
|
|
|
WalletRescanReserver reserver(*wallet);
|
2017-12-12 20:13:58 -03:00
|
|
|
reserver.reserve();
|
2020-01-22 18:53:42 -03:00
|
|
|
CWallet::ScanResult result = wallet->ScanForWalletTransactions(::ChainActive().Genesis()->GetBlockHash(), 0 /* start_height */, {} /* max_height */, reserver, false /* update */);
|
2019-01-08 04:38:53 -03:00
|
|
|
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::SUCCESS);
|
2019-03-27 12:14:25 -03:00
|
|
|
BOOST_CHECK_EQUAL(result.last_scanned_block, ::ChainActive().Tip()->GetBlockHash());
|
|
|
|
BOOST_CHECK_EQUAL(*result.last_scanned_height, ::ChainActive().Height());
|
2019-01-31 19:42:56 -03:00
|
|
|
BOOST_CHECK(result.last_failed_block.IsNull());
|
2017-04-28 15:18:14 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
~ListCoinsTestingSetup()
|
|
|
|
{
|
|
|
|
wallet.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
CWalletTx& AddTx(CRecipient recipient)
|
|
|
|
{
|
2017-02-02 17:30:03 -03:00
|
|
|
CTransactionRef tx;
|
2017-04-28 15:18:14 -03:00
|
|
|
CAmount fee;
|
|
|
|
int changePos = -1;
|
|
|
|
std::string error;
|
2017-06-28 16:41:55 -04:00
|
|
|
CCoinControl dummy;
|
2019-05-16 15:43:22 -04:00
|
|
|
{
|
|
|
|
auto locked_chain = m_chain->lock();
|
2019-07-09 20:07:39 -04:00
|
|
|
BOOST_CHECK(wallet->CreateTransaction({recipient}, tx, fee, changePos, error, dummy));
|
2019-05-16 15:43:22 -04:00
|
|
|
}
|
2019-10-18 10:37:40 -03:00
|
|
|
wallet->CommitTransaction(tx, {}, {});
|
2017-12-04 20:25:57 -03:00
|
|
|
CMutableTransaction blocktx;
|
|
|
|
{
|
|
|
|
LOCK(wallet->cs_wallet);
|
2017-02-02 17:30:03 -03:00
|
|
|
blocktx = CMutableTransaction(*wallet->mapWallet.at(tx->GetHash()).tx);
|
2017-12-04 20:25:57 -03:00
|
|
|
}
|
|
|
|
CreateAndProcessBlock({CMutableTransaction(blocktx)}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
|
2019-04-19 13:19:20 -04:00
|
|
|
|
|
|
|
LOCK(cs_main);
|
2017-11-06 19:08:55 -03:00
|
|
|
LOCK(wallet->cs_wallet);
|
2019-04-20 12:02:52 -04:00
|
|
|
wallet->SetLastBlockProcessed(wallet->GetLastBlockHeight() + 1, ::ChainActive().Tip()->GetBlockHash());
|
2017-02-02 17:30:03 -03:00
|
|
|
auto it = wallet->mapWallet.find(tx->GetHash());
|
2017-04-28 15:18:14 -03:00
|
|
|
BOOST_CHECK(it != wallet->mapWallet.end());
|
2019-04-20 11:22:59 -04:00
|
|
|
CWalletTx::Confirmation confirm(CWalletTx::Status::CONFIRMED, ::ChainActive().Height(), ::ChainActive().Tip()->GetBlockHash(), 1);
|
2019-10-24 13:53:57 -03:00
|
|
|
it->second.m_confirm = confirm;
|
2017-04-28 15:18:14 -03:00
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
2019-09-17 19:28:03 -03:00
|
|
|
NodeContext m_node;
|
|
|
|
std::unique_ptr<interfaces::Chain> m_chain = interfaces::MakeChain(m_node);
|
2017-04-28 15:18:14 -03:00
|
|
|
std::unique_ptr<CWallet> wallet;
|
|
|
|
};
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_CASE(ListCoins, ListCoinsTestingSetup)
|
|
|
|
{
|
|
|
|
std::string coinbaseAddress = coinbaseKey.GetPubKey().GetID().ToString();
|
|
|
|
|
|
|
|
// Confirm ListCoins initially returns 1 coin grouped under coinbaseKey
|
|
|
|
// address.
|
2017-06-15 14:56:35 -04:00
|
|
|
std::map<CTxDestination, std::vector<COutput>> list;
|
|
|
|
{
|
2019-05-16 15:43:22 -04:00
|
|
|
auto locked_chain = m_chain->lock();
|
|
|
|
LOCK(wallet->cs_wallet);
|
|
|
|
list = wallet->ListCoins(*locked_chain);
|
2017-06-15 14:56:35 -04:00
|
|
|
}
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(list.size(), 1U);
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK_EQUAL(boost::get<PKHash>(list.begin()->first).ToString(), coinbaseAddress);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(list.begin()->second.size(), 1U);
|
2017-04-28 15:18:14 -03:00
|
|
|
|
|
|
|
// Check initial balance from one mature coinbase transaction.
|
|
|
|
BOOST_CHECK_EQUAL(50 * COIN, wallet->GetAvailableBalance());
|
|
|
|
|
|
|
|
// Add a transaction creating a change address, and confirm ListCoins still
|
|
|
|
// returns the coin associated with the change address underneath the
|
|
|
|
// coinbaseKey pubkey, even though the change address has a different
|
|
|
|
// pubkey.
|
|
|
|
AddTx(CRecipient{GetScriptForRawPubKey({}), 1 * COIN, false /* subtract fee */});
|
2017-06-15 14:56:35 -04:00
|
|
|
{
|
2019-05-16 15:43:22 -04:00
|
|
|
auto locked_chain = m_chain->lock();
|
|
|
|
LOCK(wallet->cs_wallet);
|
|
|
|
list = wallet->ListCoins(*locked_chain);
|
2017-06-15 14:56:35 -04:00
|
|
|
}
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(list.size(), 1U);
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK_EQUAL(boost::get<PKHash>(list.begin()->first).ToString(), coinbaseAddress);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(list.begin()->second.size(), 2U);
|
2017-04-28 15:18:14 -03:00
|
|
|
|
|
|
|
// Lock both coins. Confirm number of available coins drops to 0.
|
2018-02-02 08:37:50 -03:00
|
|
|
{
|
2019-05-16 15:43:22 -04:00
|
|
|
auto locked_chain = m_chain->lock();
|
|
|
|
LOCK(wallet->cs_wallet);
|
2018-02-02 08:37:50 -03:00
|
|
|
std::vector<COutput> available;
|
2019-05-16 15:43:22 -04:00
|
|
|
wallet->AvailableCoins(*locked_chain, available);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(available.size(), 2U);
|
2018-02-02 08:37:50 -03:00
|
|
|
}
|
2017-04-28 15:18:14 -03:00
|
|
|
for (const auto& group : list) {
|
|
|
|
for (const auto& coin : group.second) {
|
2017-12-04 20:25:57 -03:00
|
|
|
LOCK(wallet->cs_wallet);
|
2017-04-28 15:18:14 -03:00
|
|
|
wallet->LockCoin(COutPoint(coin.tx->GetHash(), coin.i));
|
|
|
|
}
|
|
|
|
}
|
2018-02-02 08:37:50 -03:00
|
|
|
{
|
2019-05-16 15:43:22 -04:00
|
|
|
auto locked_chain = m_chain->lock();
|
|
|
|
LOCK(wallet->cs_wallet);
|
2018-02-02 08:37:50 -03:00
|
|
|
std::vector<COutput> available;
|
2019-05-16 15:43:22 -04:00
|
|
|
wallet->AvailableCoins(*locked_chain, available);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(available.size(), 0U);
|
2018-02-02 08:37:50 -03:00
|
|
|
}
|
2017-04-28 15:18:14 -03:00
|
|
|
// Confirm ListCoins still returns same result as before, despite coins
|
|
|
|
// being locked.
|
2017-06-15 14:56:35 -04:00
|
|
|
{
|
2019-05-16 15:43:22 -04:00
|
|
|
auto locked_chain = m_chain->lock();
|
|
|
|
LOCK(wallet->cs_wallet);
|
|
|
|
list = wallet->ListCoins(*locked_chain);
|
2017-06-15 14:56:35 -04:00
|
|
|
}
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(list.size(), 1U);
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK_EQUAL(boost::get<PKHash>(list.begin()->first).ToString(), coinbaseAddress);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(list.begin()->second.size(), 2U);
|
2017-04-28 15:18:14 -03:00
|
|
|
}
|
|
|
|
|
2018-06-13 15:19:06 -04:00
|
|
|
BOOST_FIXTURE_TEST_CASE(wallet_disableprivkeys, TestChain100Setup)
|
|
|
|
{
|
2019-09-17 19:28:03 -03:00
|
|
|
NodeContext node;
|
|
|
|
auto chain = interfaces::MakeChain(node);
|
2019-03-22 01:24:55 -03:00
|
|
|
std::shared_ptr<CWallet> wallet = std::make_shared<CWallet>(chain.get(), WalletLocation(), WalletDatabase::CreateDummy());
|
2019-10-07 15:11:34 -03:00
|
|
|
wallet->SetupLegacyScriptPubKeyMan();
|
2019-02-06 23:26:55 -03:00
|
|
|
wallet->SetMinVersion(FEATURE_LATEST);
|
2018-06-13 15:19:06 -04:00
|
|
|
wallet->SetWalletFlag(WALLET_FLAG_DISABLE_PRIVATE_KEYS);
|
|
|
|
BOOST_CHECK(!wallet->TopUpKeyPool(1000));
|
2019-06-18 15:19:13 -04:00
|
|
|
CTxDestination dest;
|
|
|
|
std::string error;
|
|
|
|
BOOST_CHECK(!wallet->GetNewDestination(OutputType::BECH32, "", dest, error));
|
2018-06-13 15:19:06 -04:00
|
|
|
}
|
|
|
|
|
2018-10-03 02:41:03 -03:00
|
|
|
// Explicit calculation which is used to test the wallet constant
|
|
|
|
// We get the same virtual size due to rounding(weight/4) for both use_max_sig values
|
|
|
|
static size_t CalculateNestedKeyhashInputSize(bool use_max_sig)
|
|
|
|
{
|
|
|
|
// Generate ephemeral valid pubkey
|
|
|
|
CKey key;
|
|
|
|
key.MakeNewKey(true);
|
|
|
|
CPubKey pubkey = key.GetPubKey();
|
|
|
|
|
|
|
|
// Generate pubkey hash
|
|
|
|
uint160 key_hash(Hash160(pubkey.begin(), pubkey.end()));
|
|
|
|
|
|
|
|
// Create inner-script to enter into keystore. Key hash can't be 0...
|
|
|
|
CScript inner_script = CScript() << OP_0 << std::vector<unsigned char>(key_hash.begin(), key_hash.end());
|
|
|
|
|
|
|
|
// Create outer P2SH script for the output
|
|
|
|
uint160 script_id(Hash160(inner_script.begin(), inner_script.end()));
|
|
|
|
CScript script_pubkey = CScript() << OP_HASH160 << std::vector<unsigned char>(script_id.begin(), script_id.end()) << OP_EQUAL;
|
|
|
|
|
|
|
|
// Add inner-script to key store and key to watchonly
|
2019-06-06 10:33:23 -04:00
|
|
|
FillableSigningProvider keystore;
|
2018-10-03 02:41:03 -03:00
|
|
|
keystore.AddCScript(inner_script);
|
|
|
|
keystore.AddKeyPubKey(key, pubkey);
|
|
|
|
|
|
|
|
// Fill in dummy signatures for fee calculation.
|
|
|
|
SignatureData sig_data;
|
|
|
|
|
|
|
|
if (!ProduceSignature(keystore, use_max_sig ? DUMMY_MAXIMUM_SIGNATURE_CREATOR : DUMMY_SIGNATURE_CREATOR, script_pubkey, sig_data)) {
|
|
|
|
// We're hand-feeding it correct arguments; shouldn't happen
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
CTxIn tx_in;
|
|
|
|
UpdateInput(tx_in, sig_data);
|
|
|
|
return (size_t)GetVirtualTransactionInputSize(tx_in);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_CASE(dummy_input_size_test, TestChain100Setup)
|
|
|
|
{
|
|
|
|
BOOST_CHECK_EQUAL(CalculateNestedKeyhashInputSize(false), DUMMY_NESTED_P2WPKH_INPUT_SIZE);
|
|
|
|
BOOST_CHECK_EQUAL(CalculateNestedKeyhashInputSize(true), DUMMY_NESTED_P2WPKH_INPUT_SIZE);
|
|
|
|
}
|
|
|
|
|
2020-02-28 21:14:12 -03:00
|
|
|
bool malformed_descriptor(std::ios_base::failure e)
|
|
|
|
{
|
|
|
|
std::string s(e.what());
|
|
|
|
return s.find("Missing checksum") != std::string::npos;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_CASE(wallet_descriptor_test, BasicTestingSetup)
|
|
|
|
{
|
|
|
|
std::vector<unsigned char> malformed_record;
|
|
|
|
CVectorWriter vw(0, 0, malformed_record, 0);
|
|
|
|
vw << std::string("notadescriptor");
|
|
|
|
vw << (uint64_t)0;
|
|
|
|
vw << (int32_t)0;
|
|
|
|
vw << (int32_t)0;
|
|
|
|
vw << (int32_t)1;
|
|
|
|
|
|
|
|
VectorReader vr(0, 0, malformed_record, 0);
|
|
|
|
WalletDescriptor w_desc;
|
|
|
|
BOOST_CHECK_EXCEPTION(vr >> w_desc, std::ios_base::failure, malformed_descriptor);
|
|
|
|
}
|
|
|
|
|
2020-04-21 12:41:35 -04:00
|
|
|
//! Test CreateWalletFromFile function and its behavior handling potential race
|
|
|
|
//! conditions if it's called the same time an incoming transaction shows up in
|
|
|
|
//! the mempool or a new block.
|
|
|
|
//!
|
|
|
|
//! It isn't possible for a unit test to totally verify there aren't race
|
|
|
|
//! conditions without hooking into the implementation more, so this test just
|
|
|
|
//! verifies that new transactions are detected during loading without any
|
|
|
|
//! notifications at all, to infer that timing of notifications shouldn't
|
|
|
|
//! matter. The test could be extended to cover other scenarios in the future.
|
|
|
|
BOOST_FIXTURE_TEST_CASE(CreateWalletFromFile, TestChain100Setup)
|
|
|
|
{
|
|
|
|
// Create new wallet with known key and unload it.
|
|
|
|
auto chain = interfaces::MakeChain(m_node);
|
|
|
|
auto wallet = TestLoadWallet(*chain);
|
|
|
|
CKey key;
|
|
|
|
key.MakeNewKey(true);
|
|
|
|
AddKey(*wallet, key);
|
|
|
|
TestUnloadWallet(std::move(wallet));
|
|
|
|
|
|
|
|
// Add log hook to detect AddToWallet events from rescans, blockConnected,
|
|
|
|
// and transactionAddedToMempool notifications
|
|
|
|
int addtx_count = 0;
|
|
|
|
DebugLogHelper addtx_counter("[default wallet] AddToWallet", [&](const std::string* s) {
|
|
|
|
if (s) ++addtx_count;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
bool rescan_completed = false;
|
|
|
|
DebugLogHelper rescan_check("[default wallet] Rescan completed", [&](const std::string* s) {
|
|
|
|
if (s) {
|
|
|
|
// For now, just assert that cs_main is being held during the
|
|
|
|
// rescan, ensuring that a new block couldn't be connected
|
|
|
|
// that the wallet would miss. After
|
|
|
|
// https://github.com/bitcoin/bitcoin/pull/16426 when cs_main is no
|
|
|
|
// longer held, the test can be extended to append a new block here
|
|
|
|
// and check it's handled correctly.
|
|
|
|
AssertLockHeld(::cs_main);
|
|
|
|
rescan_completed = true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Block the queue to prevent the wallet receiving blockConnected and
|
|
|
|
// transactionAddedToMempool notifications, and create block and mempool
|
|
|
|
// transactions paying to the wallet
|
|
|
|
std::promise<void> promise;
|
|
|
|
CallFunctionInValidationInterfaceQueue([&promise] {
|
|
|
|
promise.get_future().wait();
|
|
|
|
});
|
|
|
|
std::string error;
|
|
|
|
m_coinbase_txns.push_back(CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey())).vtx[0]);
|
|
|
|
auto block_tx = TestSimpleSpend(*m_coinbase_txns[0], 0, coinbaseKey, GetScriptForRawPubKey(key.GetPubKey()));
|
|
|
|
m_coinbase_txns.push_back(CreateAndProcessBlock({block_tx}, GetScriptForRawPubKey(coinbaseKey.GetPubKey())).vtx[0]);
|
|
|
|
auto mempool_tx = TestSimpleSpend(*m_coinbase_txns[1], 0, coinbaseKey, GetScriptForRawPubKey(key.GetPubKey()));
|
|
|
|
BOOST_CHECK(chain->broadcastTransaction(MakeTransactionRef(mempool_tx), DEFAULT_TRANSACTION_MAXFEE, false, error));
|
|
|
|
|
|
|
|
// Reload wallet and make sure new transactions are detected despite events
|
|
|
|
// being blocked
|
|
|
|
wallet = TestLoadWallet(*chain);
|
|
|
|
BOOST_CHECK(rescan_completed);
|
|
|
|
BOOST_CHECK_EQUAL(addtx_count, 2);
|
|
|
|
unsigned int block_tx_time, mempool_tx_time;
|
|
|
|
{
|
|
|
|
LOCK(wallet->cs_wallet);
|
|
|
|
block_tx_time = wallet->mapWallet.at(block_tx.GetHash()).nTimeReceived;
|
|
|
|
mempool_tx_time = wallet->mapWallet.at(mempool_tx.GetHash()).nTimeReceived;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unblock notification queue and make sure stale blockConnected and
|
|
|
|
// transactionAddedToMempool events are processed
|
|
|
|
promise.set_value();
|
|
|
|
SyncWithValidationInterfaceQueue();
|
|
|
|
BOOST_CHECK_EQUAL(addtx_count, 4);
|
|
|
|
{
|
|
|
|
LOCK(wallet->cs_wallet);
|
|
|
|
BOOST_CHECK_EQUAL(block_tx_time, wallet->mapWallet.at(block_tx.GetHash()).nTimeReceived);
|
|
|
|
BOOST_CHECK_EQUAL(mempool_tx_time, wallet->mapWallet.at(mempool_tx.GetHash()).nTimeReceived);
|
|
|
|
}
|
|
|
|
|
|
|
|
TestUnloadWallet(std::move(wallet));
|
|
|
|
}
|
|
|
|
|
2012-02-27 09:19:32 -03:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|