test: [refactor] Fix F841 flake8

This commit is contained in:
MarcoFalke
2024-08-27 14:14:45 +02:00
parent 444421db69
commit faaf3e53f0
8 changed files with 28 additions and 28 deletions

View File

@@ -154,7 +154,7 @@ class BytesPerSigOpTest(BitcoinTestFramework):
return (tx_utxo, tx)
tx_parent_utxo, tx_parent = create_bare_multisig_tx()
tx_child_utxo, tx_child = create_bare_multisig_tx(tx_parent_utxo)
_tx_child_utxo, tx_child = create_bare_multisig_tx(tx_parent_utxo)
# Separately, the parent tx is ok
parent_individual_testres = self.nodes[0].testmempoolaccept([tx_parent.serialize().hex()])[0]