Skip to content

Commit

Permalink
Update MerkleBlockPayload.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon authored Dec 21, 2019
1 parent 88b8998 commit c02af40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neo/Network/P2P/Payloads/MerkleBlockPayload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public override void Deserialize(BinaryReader reader)
base.Deserialize(reader);
ContentCount = (int)reader.ReadVarInt(Block.MaxTransactionsPerBlock);
Hashes = reader.ReadSerializableArray<UInt256>(Block.MaxTransactionsPerBlock);
Flags = reader.ReadVarBytes(Block.MaxTransactionsPerBlock);
Flags = reader.ReadVarBytes(Block.MaxTransactionsPerBlock / 8);
}

public override void Serialize(BinaryWriter writer)
Expand Down

0 comments on commit c02af40

Please sign in to comment.