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

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
localhuman committed Oct 17, 2017
2 parents c298cb3 + 6f1b63b commit cdec009
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion neo/Network/NeoNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ def CheckDataReceived(self):
StreamManager.ReleaseStream(ms)
del reader

self.CheckMessageData()
try:
self.CheckMessageData()
except Exception as e:
print("Could not check message data %s " % e)

def CheckMessageData(self):
if not self.pm: return
Expand Down

0 comments on commit cdec009

Please sign in to comment.