aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/messages.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/test_framework/messages.py')
-rwxr-xr-xtest/functional/test_framework/messages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 954ae3c4df..00190e4cbd 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -1155,7 +1155,7 @@ class msg_generic:
class msg_witness_block(msg_block):
__slots__ = ()
def serialize(self):
- r = self.block.serialize(with_witness=True)
+ r = self.block.serialize()
return r
@@ -1454,5 +1454,5 @@ class msg_witness_blocktxn(msg_blocktxn):
def serialize(self):
r = b""
- r += self.block_transactions.serialize(with_witness=True)
+ r += self.block_transactions.serialize()
return r