forked from zcash/zcash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of zcash#1602 - str4d:1424-minimal-getblocktemplate, r=daira
Minimal modifications to getblocktemplate A simpler alternative to zcash#1435 that ensures Zcash GBT will remain compatible with BIP 22. Closes zcash#1424
- Loading branch information
Showing
4 changed files
with
98 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/usr/bin/env python2 | ||
# Copyright (c) 2016 The Zcash developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
from test_framework.test_framework import BitcoinTestFramework | ||
from test_framework.util import * | ||
|
||
|
||
class GetBlockTemplateTest(BitcoinTestFramework): | ||
''' | ||
Test getblocktemplate. | ||
''' | ||
|
||
def setup_chain(self): | ||
print("Initializing test directory "+self.options.tmpdir) | ||
initialize_chain_clean(self.options.tmpdir, 4) | ||
|
||
def setup_network(self, split=False): | ||
self.nodes = start_nodes(2, self.options.tmpdir) | ||
connect_nodes_bi(self.nodes,0,1) | ||
self.is_network_split=False | ||
self.sync_all() | ||
|
||
def run_test(self): | ||
node = self.nodes[0] | ||
node.generate(1) # Mine a block to leave initial block download | ||
|
||
# Test 1: Default to coinbasetxn | ||
tmpl = node.getblocktemplate() | ||
assert('coinbasetxn' in tmpl) | ||
assert('coinbasevalue' not in tmpl) | ||
|
||
# Test 2: Get coinbasetxn if requested | ||
tmpl = node.getblocktemplate({'capabilities': ['coinbasetxn']}) | ||
assert('coinbasetxn' in tmpl) | ||
assert('coinbasevalue' not in tmpl) | ||
|
||
# Test 3: coinbasevalue not supported if requested | ||
tmpl = node.getblocktemplate({'capabilities': ['coinbasevalue']}) | ||
assert('coinbasetxn' in tmpl) | ||
assert('coinbasevalue' not in tmpl) | ||
|
||
# Test 4: coinbasevalue not supported if both requested | ||
tmpl = node.getblocktemplate({'capabilities': ['coinbasetxn', 'coinbasevalue']}) | ||
assert('coinbasetxn' in tmpl) | ||
assert('coinbasevalue' not in tmpl) | ||
|
||
# Test 5: General checks | ||
tmpl = node.getblocktemplate() | ||
assert(len(tmpl['noncerange']) == 16) | ||
|
||
# Test 6: coinbasetxn checks | ||
assert('foundersreward' in tmpl['coinbasetxn']) | ||
assert(tmpl['coinbasetxn']['required']) | ||
|
||
if __name__ == '__main__': | ||
GetBlockTemplateTest().main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters