diff options
| author | practicalswift <[email protected]> | 2017-06-08 09:44:32 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-06-08 09:44:32 +0200 |
| commit | 9f841a6c3d8ebc6a84ac646604eebcdb9d6763ef (patch) | |
| tree | dc138336a0a7448f1f0c673c2cfcb884c89212c5 | |
| parent | [tests] Remove unused function InsecureRandBytes(size_t len) (diff) | |
| download | discoin-9f841a6c3d8ebc6a84ac646604eebcdb9d6763ef.tar.xz discoin-9f841a6c3d8ebc6a84ac646604eebcdb9d6763ef.zip | |
[tests] Remove accidental trailing semicolon
| -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 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) |