(self, input_txid)
| 57 | self.rpc_timeout = 240 |
| 58 | |
| 59 | def create_tx(self, input_txid): |
| 60 | utxo_to_spend = self.miniwallet.get_utxo(txid=input_txid, mark_as_spent=False) |
| 61 | return self.miniwallet.create_self_transfer(utxo_to_spend=utxo_to_spend)['tx'] |
| 62 | |
| 63 | def test_dersig_info(self, *, is_active): |
| 64 | assert_equal(self.nodes[0].getdeploymentinfo()['deployments']['bip66'], |
no test coverage detected