aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/test_framework/blocktools.py
diff options
context:
space:
mode:
authorBob McElrath <[email protected]>2016-07-06 19:46:46 -0400
committerBob McElrath <[email protected]>2016-07-06 19:46:46 -0400
commit36ae37a9f910922954d48ed1f3f2177d8b227205 (patch)
treece5670209db9f7c01e242640a6cd429dcad54d21 /qa/rpc-tests/test_framework/blocktools.py
parentMerge #8288: qt: Network-specific example address (diff)
downloaddiscoin-36ae37a9f910922954d48ed1f3f2177d8b227205.tar.xz
discoin-36ae37a9f910922954d48ed1f3f2177d8b227205.zip
Rename CTxinWitness -> CTxInWitness
Diffstat (limited to 'qa/rpc-tests/test_framework/blocktools.py')
-rw-r--r--qa/rpc-tests/test_framework/blocktools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/test_framework/blocktools.py b/qa/rpc-tests/test_framework/blocktools.py
index df4fe13e5..f69958823 100644
--- a/qa/rpc-tests/test_framework/blocktools.py
+++ b/qa/rpc-tests/test_framework/blocktools.py
@@ -34,7 +34,7 @@ def add_witness_commitment(block, nonce=0):
witness_root = block.calc_witness_merkle_root()
witness_commitment = uint256_from_str(hash256(ser_uint256(witness_root)+ser_uint256(witness_nonce)))
# witness_nonce should go to coinbase witness.
- block.vtx[0].wit.vtxinwit = [CTxinWitness()]
+ block.vtx[0].wit.vtxinwit = [CTxInWitness()]
block.vtx[0].wit.vtxinwit[0].scriptWitness.stack = [ser_uint256(witness_nonce)]
# witness commitment is the last OP_RETURN output in coinbase