aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuhas Daftuar <[email protected]>2015-02-04 11:34:28 -0500
committerSuhas Daftuar <[email protected]>2015-02-04 12:04:49 -0500
commit1cb2a00cb8221841e7d748ed49fd2ea0ad50ac12 (patch)
tree71545511a2e449d532cb655d3eb3df7bdeb4d542
parentMerge pull request #5754 (diff)
downloaddiscoin-1cb2a00cb8221841e7d748ed49fd2ea0ad50ac12.tar.xz
discoin-1cb2a00cb8221841e7d748ed49fd2ea0ad50ac12.zip
Fix getblocktemplate_proposals test by mining one block
This triggers the tested node to no longer be in initial download, allowing the call to getblocktemplate() to succeed.
-rwxr-xr-xqa/rpc-tests/getblocktemplate_proposals.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/qa/rpc-tests/getblocktemplate_proposals.py b/qa/rpc-tests/getblocktemplate_proposals.py
index 22fe2ce04..f65162002 100755
--- a/qa/rpc-tests/getblocktemplate_proposals.py
+++ b/qa/rpc-tests/getblocktemplate_proposals.py
@@ -95,6 +95,7 @@ class GetBlockTemplateProposalTest(BitcoinTestFramework):
def run_test(self):
node = self.nodes[0]
+ node.setgenerate(True, 1) # Mine a block to leave initial block download
tmpl = node.getblocktemplate()
if 'coinbasetxn' not in tmpl:
rawcoinbase = encodeUNum(tmpl['height'])