Merge #14664: example_test.py: fixup coinbase height argument, derive number clearly
6c5355e43d
example_test.py: fixup coinbase height argument, derive number clearly (Gregory Sanders)
Pull request description:
Tree-SHA512: 52b7eb73422feb1f730924c9f513c1c54e2b8b1bcf962b4df59fb6b0b86812ae8d0d336f8ef8edac9aab0e7722fd16ed21fd92fa58ab143d6f8efc5ac10e5b1f
This commit is contained in:
commit
9c3f6c5fad
1 changed files with 2 additions and 2 deletions
|
@ -164,13 +164,13 @@ class ExampleTest(BitcoinTestFramework):
|
||||||
self.tip = int(self.nodes[0].getbestblockhash(), 16)
|
self.tip = int(self.nodes[0].getbestblockhash(), 16)
|
||||||
self.block_time = self.nodes[0].getblock(self.nodes[0].getbestblockhash())['time'] + 1
|
self.block_time = self.nodes[0].getblock(self.nodes[0].getbestblockhash())['time'] + 1
|
||||||
|
|
||||||
height = 1
|
height = self.nodes[0].getblockcount()
|
||||||
|
|
||||||
for i in range(10):
|
for i in range(10):
|
||||||
# Use the mininode and blocktools functionality to manually build a block
|
# Use the mininode and blocktools functionality to manually build a block
|
||||||
# Calling the generate() rpc is easier, but this allows us to exactly
|
# Calling the generate() rpc is easier, but this allows us to exactly
|
||||||
# control the blocks and transactions.
|
# control the blocks and transactions.
|
||||||
block = create_block(self.tip, create_coinbase(height), self.block_time)
|
block = create_block(self.tip, create_coinbase(height+1), self.block_time)
|
||||||
block.solve()
|
block.solve()
|
||||||
block_message = msg_block(block)
|
block_message = msg_block(block)
|
||||||
# Send message is used to send a P2P message to the node over our P2PInterface
|
# Send message is used to send a P2P message to the node over our P2PInterface
|
||||||
|
|
Loading…
Reference in a new issue