diff options
author | Gregory Sanders <gsanders87@gmail.com> | 2019-04-02 10:18:12 -0400 |
---|---|---|
committer | Gregory Sanders <gsanders87@gmail.com> | 2019-04-02 10:18:12 -0400 |
commit | 124ea38e39320d6f63cdf24979d0c1ff92cd769c (patch) | |
tree | eff7c8aac60a07ab4fdfed015078a152752af3cc /test | |
parent | 717fd58c4ba5c64778fa9a8bf6bbf5ae1164df3f (diff) |
change default Python block serialization to witness
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/test_framework/messages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py index 7cf51d9223..954ae3c4df 100755 --- a/test/functional/test_framework/messages.py +++ b/test/functional/test_framework/messages.py @@ -605,7 +605,7 @@ class CBlock(CBlockHeader): super(CBlock, self).deserialize(f) self.vtx = deser_vector(f, CTransaction) - def serialize(self, with_witness=False): + def serialize(self, with_witness=True): r = b"" r += super(CBlock, self).serialize() if with_witness: |