Skip to content

Commit

Permalink
serialization fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenroose committed Jan 24, 2019
1 parent 50c6c53 commit 24007b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/test_framework/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,8 @@ def deserialize(self, f):
# Only applicable for non-CT, non-segwit transactions
def serialize_without_witness(self):
r = b""
r += struct.pack("B", 1)
r += struct.pack("<i", self.nVersion)
r += struct.pack("B", 1)
r += ser_vector(self.vin)
r += ser_vector(self.vout)
r += struct.pack("<I", self.nLockTime)
Expand Down

0 comments on commit 24007b3

Please sign in to comment.