aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2022-01-11 04:02:49 +0100
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2022-01-11 16:22:27 +0100
commitf30041c9143d0added18105c9f0c4ae3f340efbc (patch)
tree1c4efbd83f6ae77ac008c296e45aa102aeb53253 /test/functional/test_framework
parent2f7978682245ada40e7f72c6f28bf2379fdc8ce2 (diff)
downloadbitcoin-f30041c9143d0added18105c9f0c4ae3f340efbc.tar.xz
test: create txs with current `nVersion` (2) by default
This enables testing of BIP68 without the need of explicitly setting nVersion to 2. This is e.g. useful for transactions created with MiniWallet.
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-xtest/functional/test_framework/messages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index bedffcef55..f57b6e7494 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -509,7 +509,7 @@ class CTransaction:
def __init__(self, tx=None):
if tx is None:
- self.nVersion = 1
+ self.nVersion = 2
self.vin = []
self.vout = []
self.wit = CTxWitness()