Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
fix #1014 (#1016)
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje committed Sep 9, 2019
1 parent e670bca commit 4d72b13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All notable changes to this project are documented in this file.
[0.9.1-dev] In progress
-----------------------
- Reformat wallet verbose output to include big-endian scripthash

- Fix network syncing against neo-cli ``2.10.3`` clients

[0.9.0] 2019-08-21
------------------
Expand Down
1 change: 1 addition & 0 deletions neo/Network/payloads/getblocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def serialize(self, writer: 'BinaryWriter') -> None:
writer.write_var_int(length)
for hash in self.hash_start:
writer.write_uint256(hash)
writer.write_uint256(self.hash_stop)

def deserialize(self, reader: 'BinaryReader') -> None:
""" Deserialize object. """
Expand Down

0 comments on commit 4d72b13

Please sign in to comment.