diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2015-03-31 20:28:28 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2015-04-01 11:47:10 -0700 |
commit | 6b04508e37c5dd18cec1cd61cc4356bd208aa991 (patch) | |
tree | e3a5ac58ed8e891e55638af98db9b33257db57f3 /qa/rpc-tests/rest.py | |
parent | 0df67f1f7ab4adfe9f0b3ba6276e737b37826464 (diff) |
Introduce separate 'generate' RPC call
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 a9d41cf367..9b7008531c 100755 --- a/qa/rpc-tests/rest.py +++ b/qa/rpc-tests/rest.py @@ -90,7 +90,7 @@ class RESTTest (BitcoinTestFramework): self.sync_all() # now mine the transactions - newblockhash = self.nodes[1].setgenerate(True, 1) + newblockhash = self.nodes[1].generate(1) self.sync_all() #check if the 3 tx show up in the new block |