(self, peer_node, dest_address)
| 229 | |
| 230 | |
| 231 | def test_nonrbf_bumpfee_fails(self, peer_node, dest_address): |
| 232 | self.log.info('Test that we cannot replace a non RBF transaction') |
| 233 | not_rbfid = peer_node.sendtoaddress(dest_address, Decimal("0.00090000")) |
| 234 | assert_raises_rpc_error(-4, "not BIP 125 replaceable", peer_node.bumpfee, not_rbfid) |
| 235 | self.clear_mempool() |
| 236 | |
| 237 | |
| 238 | def test_notmine_bumpfee_fails(self, rbf_node, peer_node, dest_address): |
no test coverage detected