diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-08-19 17:27:58 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-08-19 17:28:00 +0200 |
commit | 80cddbbba99fc82e52e59cf0928fdc8d85cd29af (patch) | |
tree | aaa43a89f0fe8843b565f817f6a2b9469c1b90e6 /qa/rpc-tests/rest.py | |
parent | a6f2affde878d4f16aee6aa81b0d5cf36afdbf2d (diff) | |
parent | 9f68ed6b6d1a9c6436ce37913666165f2b180ee3 (diff) |
Merge pull request #6539
9f68ed6 typofixes (found by misspell_fixer) (Veres Lajos)
Diffstat (limited to 'qa/rpc-tests/rest.py')
-rwxr-xr-x | qa/rpc-tests/rest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/rest.py b/qa/rpc-tests/rest.py index 2da5219507..3a035f996c 100755 --- a/qa/rpc-tests/rest.py +++ b/qa/rpc-tests/rest.py @@ -200,7 +200,7 @@ class RESTTest (BitcoinTestFramework): response = http_get_call(url.hostname, url.port, '/rest/getutxos'+json_request+self.FORMAT_SEPARATOR+'json', '', True) assert_equal(response.status, 200) #must be a 500 because we exceeding the limits - self.nodes[0].generate(1) #generate block to not affect upcomming tests + self.nodes[0].generate(1) #generate block to not affect upcoming tests self.sync_all() ################ |