Skip to content

Commit acc14c5

Browse files
committed
test: fix incorrect value in rpc_rawtransaction.py
1 parent cf57e33 commit acc14c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/rpc_rawtransaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def run_test(self):
445445

446446
self.sync_all()
447447
inputs = [{ "txid" : txId, "vout" : vout['n'] }]
448-
outputs = { self.nodes[0].getnewaddress() : Decimal("0.999990000") } # 10000 sat fee
448+
outputs = { self.nodes[0].getnewaddress() : Decimal("0.99990000") } # 10000 sat fee
449449
rawTx = self.nodes[2].createrawtransaction(inputs, outputs)
450450
rawTxSigned = self.nodes[2].signrawtransactionwithwallet(rawTx)
451451
assert_equal(rawTxSigned['complete'], True)

0 commit comments

Comments
 (0)