Fix bug in resolving log message of user assertion (#1784)

pull/1786/head
breakpo1nt 1 year ago committed by GitHub
parent 96c3ecd4b8
commit 1f330efafb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      mythril/analysis/module/modules/user_assertions.py

@ -76,7 +76,7 @@ class UserAssertions(DetectionModule):
mem_start.value + 32 : mem_start.value + size.value
]
),
).decode("utf8")
)
except:
pass
try:

Loading…
Cancel
Save