diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-03-26 17:24:17 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-03-26 17:24:17 -0400 |
commit | adc258608144e249d478e901876cb181a1f635e9 (patch) | |
tree | fccadedb92f2f41c92d21800a558db74620b120b /test | |
parent | 7466a26cab5d66665991433947964a638f5b957e (diff) |
doc: Refer to witness reserved value as spec. in the BIP
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/p2p_segwit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py index 8b226c2e9d..e6af35fc3d 100755 --- a/test/functional/p2p_segwit.py +++ b/test/functional/p2p_segwit.py @@ -425,7 +425,7 @@ class SegWitTest(BitcoinTestFramework): assert(self.nodes[0].getbestblockhash() == block.hash) - # Now make sure that malleating the witness nonce doesn't + # Now make sure that malleating the witness reserved value doesn't # result in a block permanently marked bad. block = self.build_next_block() add_witness_commitment(block) @@ -436,7 +436,7 @@ class SegWitTest(BitcoinTestFramework): block.vtx[0].wit.vtxinwit[0].scriptWitness.stack = [ ser_uint256(1) ] test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False) - # Changing the witness nonce doesn't change the block hash + # Changing the witness reserved value doesn't change the block hash block.vtx[0].wit.vtxinwit[0].scriptWitness.stack = [ ser_uint256(0) ] test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True) |