mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 19:23:26 -03:00
[tests] Remove accidental trailing semicolon
This commit is contained in:
parent
30c2d9db48
commit
9f841a6c3d
1 changed files with 1 additions and 1 deletions
|
@ -521,7 +521,7 @@ class ReplaceByFeeTest(BitcoinTestFramework):
|
||||||
|
|
||||||
def test_rpc(self):
|
def test_rpc(self):
|
||||||
us0 = self.nodes[0].listunspent()[0]
|
us0 = self.nodes[0].listunspent()[0]
|
||||||
ins = [us0];
|
ins = [us0]
|
||||||
outs = {self.nodes[0].getnewaddress() : Decimal(1.0000000)}
|
outs = {self.nodes[0].getnewaddress() : Decimal(1.0000000)}
|
||||||
rawtx0 = self.nodes[0].createrawtransaction(ins, outs, 0, True)
|
rawtx0 = self.nodes[0].createrawtransaction(ins, outs, 0, True)
|
||||||
rawtx1 = self.nodes[0].createrawtransaction(ins, outs, 0, False)
|
rawtx1 = self.nodes[0].createrawtransaction(ins, outs, 0, False)
|
||||||
|
|
Loading…
Add table
Reference in a new issue