(self, rbf_node, dest_address)
| 553 | |
| 554 | |
| 555 | def test_locked_wallet_fails(self, rbf_node, dest_address): |
| 556 | self.log.info('Test that locked wallet cannot bump txn') |
| 557 | rbfid = spend_one_input(rbf_node, dest_address) |
| 558 | rbf_node.walletlock() |
| 559 | assert_raises_rpc_error(-13, "Please enter the wallet passphrase with walletpassphrase first.", |
| 560 | rbf_node.bumpfee, rbfid) |
| 561 | rbf_node.walletpassphrase(WALLET_PASSPHRASE, WALLET_PASSPHRASE_TIMEOUT) |
| 562 | self.clear_mempool() |
| 563 | |
| 564 | |
| 565 | def test_change_script_match(self, rbf_node, dest_address): |
no test coverage detected