Skip to content

Commit d3b5870

Browse files
author
MarcoFalke
committed
Merge #10761: [tests] fix replace_by_fee.py
301fd51 [tests] fix replace_by_fee.py (John Newbery) Tree-SHA512: 716ae20ab1f0a5fcb38160cb3a03f83f950f3020e3ed1ad0acf94d7aff71d34ab13c57d2bff83d3afcad206d98e8d1617c1a6b58bae47e2ed28f1f247ca8187d
2 parents ed88e31 + 301fd51 commit d3b5870

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/replace-by-fee.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,8 @@ def test_rpc(self):
531531
assert_equal(json1["vin"][0]["sequence"], 4294967295)
532532

533533
rawtx2 = self.nodes[0].createrawtransaction([], outs)
534-
frawtx2a = self.nodes[0].fundrawtransaction(rawtx2, {"optIntoRbf": True})
535-
frawtx2b = self.nodes[0].fundrawtransaction(rawtx2, {"optIntoRbf": False})
534+
frawtx2a = self.nodes[0].fundrawtransaction(rawtx2, {"replaceable": True})
535+
frawtx2b = self.nodes[0].fundrawtransaction(rawtx2, {"replaceable": False})
536536

537537
json0 = self.nodes[0].decoderawtransaction(frawtx2a['hex'])
538538
json1 = self.nodes[0].decoderawtransaction(frawtx2b['hex'])

0 commit comments

Comments
 (0)