From bc54cf06cc8ff965299af219adc0f05043138880 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sat, 22 Oct 2016 15:36:38 -0500 Subject: [PATCH] Fix RPC test --- qa/rpc-tests/getblocktemplate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/rpc-tests/getblocktemplate.py b/qa/rpc-tests/getblocktemplate.py index 2610e257b..c9777c0c7 100755 --- a/qa/rpc-tests/getblocktemplate.py +++ b/qa/rpc-tests/getblocktemplate.py @@ -48,7 +48,7 @@ class GetBlockTemplateTest(BitcoinTestFramework): # Test 5: General checks tmpl = node.getblocktemplate() - assert(len(tmpl['noncerange']) == 8) + assert(len(tmpl['noncerange']) == 16) # Test 6: coinbasetxn checks assert('foundersreward' in tmpl['coinbasetxn'])