Fix for incorrect version attr set on functional test segwit block.

This commit is contained in:
Justin Turner Arthur 2018-09-23 21:30:22 -05:00
parent ba923e32a0
commit 1d0ce94a54
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ class SegWitTest(BitcoinTestFramework):
height = self.nodes[0].getblockcount() + 1
block_time = self.nodes[0].getblockheader(tip)["mediantime"] + 1
block = create_block(int(tip, 16), create_coinbase(height), block_time)
block.version = version
block.nVersion = version
block.rehash()
return block