Skip to content

Commit

Permalink
Merge bitcoin#22057: test: use MiniWallet (P2PK mode) for feature_der…
Browse files Browse the repository at this point in the history
…sig.py

3e05a57 test: use MiniWallet (P2PK mode) for feature_dersig.py (Sebastian Falbesoner)

Pull request description:

  This PR enables one more of the non-wallet functional tests (feature_dersig.py) to be run even with the Bitcoin Core wallet disabled. A valid DER-signature is created by using the recently introduced P2PK-Mode of the MiniWallet (bitcoin#21945).

ACKs for top commit:
  MarcoFalke:
    cr ACK 3e05a57

Tree-SHA512: 0fb8da8ed8b47f68bcb57301eb4f0171a6c9e44539b7554626969347e5d6f80b3b9085f2cc160cd038a990f0d81b8b614846260fbed43b5f950d77f1b7aa81cf
  • Loading branch information
MarcoFalke committed May 25, 2021
2 parents 6b25481 + 3e05a57 commit 8600934
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions test/functional/feature_dersig.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@
Test that the DERSIG soft-fork activates at (regtest) height 1251.
"""

from test_framework.blocktools import create_coinbase, create_block, create_transaction
from test_framework.blocktools import (
create_block,
create_coinbase,
)
from test_framework.messages import msg_block
from test_framework.p2p import P2PInterface
from test_framework.script import CScript
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_equal,
)
from test_framework.wallet import (
MiniWallet,
MiniWalletMode,
)

DERSIG_HEIGHT = 1251

Expand Down Expand Up @@ -46,8 +53,9 @@ def set_test_params(self):
self.setup_clean_chain = True
self.rpc_timeout = 240

def skip_test_if_missing_module(self):
self.skip_if_no_wallet()
def create_tx(self, input_txid):
utxo_to_spend = self.miniwallet.get_utxo(txid=input_txid, mark_as_spent=False)
return self.miniwallet.create_self_transfer(from_node=self.nodes[0], utxo_to_spend=utxo_to_spend)['tx']

def test_dersig_info(self, *, is_active):
assert_equal(self.nodes[0].getblockchaininfo()['softforks']['bip66'],
Expand All @@ -60,17 +68,16 @@ def test_dersig_info(self, *, is_active):

def run_test(self):
peer = self.nodes[0].add_p2p_connection(P2PInterface())
self.miniwallet = MiniWallet(self.nodes[0], mode=MiniWalletMode.RAW_P2PK)

self.test_dersig_info(is_active=False)

self.log.info("Mining %d blocks", DERSIG_HEIGHT - 2)
self.coinbase_txids = [self.nodes[0].getblock(b)['tx'][0] for b in self.nodes[0].generate(DERSIG_HEIGHT - 2)]
self.nodeaddress = self.nodes[0].getnewaddress()
self.coinbase_txids = [self.nodes[0].getblock(b)['tx'][0] for b in self.miniwallet.generate(DERSIG_HEIGHT - 2)]

self.log.info("Test that a transaction with non-DER signature can still appear in a block")

spendtx = create_transaction(self.nodes[0], self.coinbase_txids[0],
self.nodeaddress, amount=1.0)
spendtx = self.create_tx(self.coinbase_txids[0])
unDERify(spendtx)
spendtx.rehash()

Expand Down Expand Up @@ -104,8 +111,7 @@ def run_test(self):
self.log.info("Test that transactions with non-DER signatures cannot appear in a block")
block.nVersion = 3

spendtx = create_transaction(self.nodes[0], self.coinbase_txids[1],
self.nodeaddress, amount=1.0)
spendtx = self.create_tx(self.coinbase_txids[1])
unDERify(spendtx)
spendtx.rehash()

Expand Down Expand Up @@ -133,7 +139,7 @@ def run_test(self):
peer.sync_with_ping()

self.log.info("Test that a version 3 block with a DERSIG-compliant transaction is accepted")
block.vtx[1] = create_transaction(self.nodes[0], self.coinbase_txids[1], self.nodeaddress, amount=1.0)
block.vtx[1] = self.create_tx(self.coinbase_txids[1])
block.hashMerkleRoot = block.calc_merkle_root()
block.rehash()
block.solve()
Expand Down

0 comments on commit 8600934

Please sign in to comment.