diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-06-08 09:44:32 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-06-08 09:44:32 +0200 |
commit | 9f841a6c3d8ebc6a84ac646604eebcdb9d6763ef (patch) | |
tree | dc138336a0a7448f1f0c673c2cfcb884c89212c5 /test | |
parent | 30c2d9db48ab552a3deef2df504fd973200756da (diff) |
[tests] Remove accidental trailing semicolon
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/replace-by-fee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/replace-by-fee.py b/test/functional/replace-by-fee.py index ca7b623ca3..d6bf3ea59f 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) |