mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
Merge 50f250a67d into merged_master (Bitcoin PR bitcoin/bitcoin#28542)
This commit is contained in:
commit
bf24d3692a
3 changed files with 115 additions and 1 deletions
|
|
@ -1348,11 +1348,14 @@ void CWallet::MarkConflicted(const uint256& hashBlock, int conflicting_height, c
|
|||
{
|
||||
LOCK(cs_wallet);
|
||||
|
||||
int conflictconfirms = (m_last_block_processed_height - conflicting_height + 1) * -1;
|
||||
// If number of conflict confirms cannot be determined, this means
|
||||
// that the block is still unknown or not yet part of the main chain,
|
||||
// for example when loading the wallet during a reindex. Do nothing in that
|
||||
// case.
|
||||
if (m_last_block_processed_height < 0 || conflicting_height < 0) {
|
||||
return;
|
||||
}
|
||||
int conflictconfirms = (m_last_block_processed_height - conflicting_height + 1) * -1;
|
||||
if (conflictconfirms >= 0)
|
||||
return;
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
"""Test bitcoin-wallet."""
|
||||
|
||||
from decimal import Decimal
|
||||
import os
|
||||
import stat
|
||||
import subprocess
|
||||
|
|
@ -395,6 +396,66 @@ class ToolWalletTest(BitcoinTestFramework):
|
|||
self.assert_raises_tool_error('Error: Checksum is not the correct size', '-wallet=badload', '-dumpfile={}'.format(bad_sum_wallet_dump), 'createfromdump')
|
||||
assert not (self.nodes[0].wallets_path / "badload").is_dir()
|
||||
|
||||
def test_chainless_conflicts(self):
|
||||
self.log.info("Test wallet tool when wallet contains conflicting transactions")
|
||||
self.restart_node(0)
|
||||
self.generate(self.nodes[0], 101)
|
||||
|
||||
def_wallet = self.nodes[0].get_wallet_rpc(self.default_wallet_name)
|
||||
|
||||
self.nodes[0].createwallet("conflicts")
|
||||
wallet = self.nodes[0].get_wallet_rpc("conflicts")
|
||||
def_wallet.sendtoaddress(wallet.getnewaddress(), 10)
|
||||
self.generate(self.nodes[0], 1)
|
||||
|
||||
# parent tx
|
||||
parent_txid = wallet.sendtoaddress(wallet.getnewaddress(), 9, replaceable=True) # ELEMENTS FIXME: replaceable should be true by default, investigate
|
||||
parent_txid_bytes = bytes.fromhex(parent_txid)[::-1]
|
||||
conflict_utxo = wallet.gettransaction(txid=parent_txid, verbose=True)["decoded"]["vin"][0]
|
||||
value = sum([out["value"] for out in wallet.gettransaction(txid=parent_txid, verbose=True)["decoded"]["vout"]]) # ELEMENTS
|
||||
|
||||
# The specific assertion in MarkConflicted being tested requires that the parent tx is already loaded
|
||||
# by the time the child tx is loaded. Since transactions end up being loaded in txid order due to how both
|
||||
# and sqlite store things, we can just grind the child tx until it has a txid that is greater than the parent's.
|
||||
locktime = 500000000 # Use locktime as nonce, starting at unix timestamp minimum
|
||||
addr = wallet.getnewaddress()
|
||||
while True:
|
||||
child_send_res = wallet.send(outputs=[{addr: 8}], add_to_wallet=False, locktime=locktime)
|
||||
child_txid = child_send_res["txid"]
|
||||
child_txid_bytes = bytes.fromhex(child_txid)[::-1]
|
||||
if (child_txid_bytes > parent_txid_bytes):
|
||||
wallet.sendrawtransaction(child_send_res["hex"])
|
||||
break
|
||||
locktime += 1
|
||||
|
||||
# conflict with parent
|
||||
# ELEMENTS increase fee and balance tx
|
||||
amt = Decimal("9.9998")
|
||||
fee = value - amt
|
||||
conflict_unsigned = self.nodes[0].createrawtransaction(inputs=[conflict_utxo], outputs=[{wallet.getnewaddress(): amt}, {"fee": fee}])
|
||||
conflict_signed = wallet.signrawtransactionwithwallet(conflict_unsigned)["hex"]
|
||||
conflict_txid = self.nodes[0].sendrawtransaction(conflict_signed)
|
||||
self.generate(self.nodes[0], 1)
|
||||
assert_equal(wallet.gettransaction(txid=parent_txid)["confirmations"], -1)
|
||||
assert_equal(wallet.gettransaction(txid=child_txid)["confirmations"], -1)
|
||||
assert_equal(wallet.gettransaction(txid=conflict_txid)["confirmations"], 1)
|
||||
|
||||
self.stop_node(0)
|
||||
|
||||
# Wallet tool should successfully give info for this wallet
|
||||
expected_output = textwrap.dedent(f'''\
|
||||
Wallet info
|
||||
===========
|
||||
Name: conflicts
|
||||
Format: {"sqlite" if self.options.descriptors else "bdb"}
|
||||
Descriptors: {"yes" if self.options.descriptors else "no"}
|
||||
Encrypted: no
|
||||
HD (hd seed available): yes
|
||||
Keypool Size: {"8" if self.options.descriptors else "1"}
|
||||
Transactions: 4
|
||||
Address Book: 4
|
||||
''')
|
||||
self.assert_tool_output(expected_output, "-wallet=conflicts", "info")
|
||||
|
||||
def run_test(self):
|
||||
self.wallet_path = os.path.join(self.nodes[0].wallets_path, self.default_wallet_name, self.wallet_data_filename)
|
||||
|
|
@ -408,6 +469,7 @@ class ToolWalletTest(BitcoinTestFramework):
|
|||
# Salvage is a legacy wallet only thing
|
||||
self.test_salvage()
|
||||
self.test_dump_createfromdump()
|
||||
self.test_chainless_conflicts()
|
||||
|
||||
if __name__ == '__main__':
|
||||
ToolWalletTest().main()
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
"""Test Migrating a wallet from legacy to descriptor."""
|
||||
|
||||
from decimal import Decimal
|
||||
import os
|
||||
import random
|
||||
import shutil
|
||||
|
|
@ -732,6 +733,53 @@ class WalletMigrationTest(BitcoinTestFramework):
|
|||
self.nodes[0].loadwallet(info_migration["watchonly_name"])
|
||||
assert_equal(wallet_wo.getbalances()['mine']['trusted']['bitcoin'], 5)
|
||||
|
||||
def test_conflict_txs(self):
|
||||
self.log.info("Test migration when wallet contains conflicting transactions")
|
||||
def_wallet = self.nodes[0].get_wallet_rpc(self.default_wallet_name)
|
||||
|
||||
wallet = self.create_legacy_wallet("conflicts")
|
||||
def_wallet.sendtoaddress(wallet.getnewaddress(), 10)
|
||||
self.generate(self.nodes[0], 1)
|
||||
|
||||
# parent tx
|
||||
parent_txid = wallet.sendtoaddress(wallet.getnewaddress(), 9, replaceable=True) # ELEMENTS FIXME: investigate RBF
|
||||
parent_txid_bytes = bytes.fromhex(parent_txid)[::-1]
|
||||
conflict_utxo = wallet.gettransaction(txid=parent_txid, verbose=True)["decoded"]["vin"][0]
|
||||
value = sum([out["value"] for out in wallet.gettransaction(txid=parent_txid, verbose=True)["decoded"]["vout"]]) # ELEMENTS
|
||||
|
||||
# The specific assertion in MarkConflicted being tested requires that the parent tx is already loaded
|
||||
# by the time the child tx is loaded. Since transactions end up being loaded in txid order due to how both
|
||||
# and sqlite store things, we can just grind the child tx until it has a txid that is greater than the parent's.
|
||||
locktime = 500000000 # Use locktime as nonce, starting at unix timestamp minimum
|
||||
addr = wallet.getnewaddress()
|
||||
while True:
|
||||
child_send_res = wallet.send(outputs=[{addr: 8}], add_to_wallet=False, locktime=locktime)
|
||||
child_txid = child_send_res["txid"]
|
||||
child_txid_bytes = bytes.fromhex(child_txid)[::-1]
|
||||
if (child_txid_bytes > parent_txid_bytes):
|
||||
wallet.sendrawtransaction(child_send_res["hex"])
|
||||
break
|
||||
locktime += 1
|
||||
|
||||
# conflict with parent
|
||||
# ELEMENTS increase fee and balance tx
|
||||
amt = Decimal("9.9998")
|
||||
fee = value - amt
|
||||
conflict_unsigned = self.nodes[0].createrawtransaction(inputs=[conflict_utxo], outputs=[{wallet.getnewaddress(): amt}, {"fee": fee}])
|
||||
conflict_signed = wallet.signrawtransactionwithwallet(conflict_unsigned)["hex"]
|
||||
conflict_txid = self.nodes[0].sendrawtransaction(conflict_signed)
|
||||
self.generate(self.nodes[0], 1)
|
||||
assert_equal(wallet.gettransaction(txid=parent_txid)["confirmations"], -1)
|
||||
assert_equal(wallet.gettransaction(txid=child_txid)["confirmations"], -1)
|
||||
assert_equal(wallet.gettransaction(txid=conflict_txid)["confirmations"], 1)
|
||||
|
||||
wallet.migratewallet()
|
||||
assert_equal(wallet.gettransaction(txid=parent_txid)["confirmations"], -1)
|
||||
assert_equal(wallet.gettransaction(txid=child_txid)["confirmations"], -1)
|
||||
assert_equal(wallet.gettransaction(txid=conflict_txid)["confirmations"], 1)
|
||||
|
||||
wallet.unloadwallet()
|
||||
|
||||
def run_test(self):
|
||||
self.generate(self.nodes[0], 101)
|
||||
|
||||
|
|
@ -748,6 +796,7 @@ class WalletMigrationTest(BitcoinTestFramework):
|
|||
self.test_direct_file()
|
||||
self.test_addressbook()
|
||||
self.test_migrate_raw_p2sh()
|
||||
self.test_conflict_txs()
|
||||
|
||||
if __name__ == '__main__':
|
||||
WalletMigrationTest().main()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue