1
0

wallet: try detecting internal address corruption

This commit is contained in:
SomberNight
2018-12-12 20:50:53 +01:00
parent 9bbfd610be
commit ef94af950c
7 changed files with 134 additions and 21 deletions

View File

@@ -835,6 +835,10 @@ def setup_thread_excepthook():
threading.Thread.__init__ = init
def send_exception_to_crash_reporter(e: BaseException):
sys.excepthook(type(e), e, e.__traceback__)
def versiontuple(v):
return tuple(map(int, (v.split("."))))