mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 23:18:14 +01:00
Fix ZapSelectTx to sync wallet spends
Signed-off-by: Anthony Fieroni <bvbfan@abv.bg>
This commit is contained in:
@@ -787,4 +787,37 @@ BOOST_FIXTURE_TEST_CASE(CreateWalletFromFile, TestChain100Setup)
|
|||||||
TestUnloadWallet(std::move(wallet));
|
TestUnloadWallet(std::move(wallet));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_FIXTURE_TEST_CASE(ZapSelectTx, TestChain100Setup)
|
||||||
|
{
|
||||||
|
auto chain = interfaces::MakeChain(m_node);
|
||||||
|
auto wallet = TestLoadWallet(*chain);
|
||||||
|
CKey key;
|
||||||
|
key.MakeNewKey(true);
|
||||||
|
AddKey(*wallet, key);
|
||||||
|
|
||||||
|
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()));
|
||||||
|
CreateAndProcessBlock({block_tx}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
|
||||||
|
|
||||||
|
SyncWithValidationInterfaceQueue();
|
||||||
|
|
||||||
|
{
|
||||||
|
auto block_hash = block_tx.GetHash();
|
||||||
|
auto prev_hash = m_coinbase_txns[0]->GetHash();
|
||||||
|
|
||||||
|
LOCK(wallet->cs_wallet);
|
||||||
|
BOOST_CHECK(wallet->HasWalletSpend(prev_hash));
|
||||||
|
BOOST_CHECK_EQUAL(wallet->mapWallet.count(block_hash), 1);
|
||||||
|
|
||||||
|
std::vector<uint256> vHashIn{ block_hash }, vHashOut;
|
||||||
|
BOOST_CHECK_EQUAL(wallet->ZapSelectTx(vHashIn, vHashOut), DBErrors::LOAD_OK);
|
||||||
|
|
||||||
|
BOOST_CHECK(!wallet->HasWalletSpend(prev_hash));
|
||||||
|
BOOST_CHECK_EQUAL(wallet->mapWallet.count(block_hash), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
TestUnloadWallet(std::move(wallet));
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
|||||||
@@ -3074,9 +3074,11 @@ DBErrors CWallet::ZapSelectTx(std::vector<uint256>& vHashIn, std::vector<uint256
|
|||||||
{
|
{
|
||||||
AssertLockHeld(cs_wallet);
|
AssertLockHeld(cs_wallet);
|
||||||
DBErrors nZapSelectTxRet = WalletBatch(*database, "cr+").ZapSelectTx(vHashIn, vHashOut);
|
DBErrors nZapSelectTxRet = WalletBatch(*database, "cr+").ZapSelectTx(vHashIn, vHashOut);
|
||||||
for (uint256 hash : vHashOut) {
|
for (const uint256& hash : vHashOut) {
|
||||||
const auto& it = mapWallet.find(hash);
|
const auto& it = mapWallet.find(hash);
|
||||||
wtxOrdered.erase(it->second.m_it_wtxOrdered);
|
wtxOrdered.erase(it->second.m_it_wtxOrdered);
|
||||||
|
for (const auto& txin : it->second.tx->vin)
|
||||||
|
mapTxSpends.erase(txin.prevout);
|
||||||
mapWallet.erase(it);
|
mapWallet.erase(it);
|
||||||
NotifyTransactionChanged(this, hash, CT_DELETED);
|
NotifyTransactionChanged(this, hash, CT_DELETED);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user