From 9f841a6c3d8ebc6a84ac646604eebcdb9d6763ef Mon Sep 17 00:00:00 2001 From: practicalswift Date: Thu, 8 Jun 2017 09:44:32 +0200 Subject: [PATCH] [tests] Remove accidental trailing semicolon --- test/functional/replace-by-fee.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/replace-by-fee.py b/test/functional/replace-by-fee.py index ca7b623ca..d6bf3ea59 100755 --- a/test/functional/replace-by-fee.py +++ b/test/functional/replace-by-fee.py @@ -521,7 +521,7 @@ class ReplaceByFeeTest(BitcoinTestFramework): def test_rpc(self): us0 = self.nodes[0].listunspent()[0] - ins = [us0]; + ins = [us0] outs = {self.nodes[0].getnewaddress() : Decimal(1.0000000)} rawtx0 = self.nodes[0].createrawtransaction(ins, outs, 0, True) rawtx1 = self.nodes[0].createrawtransaction(ins, outs, 0, False)