Skip to content

Commit

Permalink
example_test.py: fixup coinbase height argument, derive number clearly
Browse files Browse the repository at this point in the history
  • Loading branch information
instagibbs committed Nov 5, 2018
1 parent 6b8d0a2 commit 6c5355e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/example_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ def run_test(self):
self.tip = int(self.nodes[0].getbestblockhash(), 16)
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):
# Use the mininode and blocktools functionality to manually build a block
# Calling the generate() rpc is easier, but this allows us to exactly
# 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_message = msg_block(block)
# Send message is used to send a P2P message to the node over our P2PInterface
Expand Down

0 comments on commit 6c5355e

Please sign in to comment.