Merge pull request #189 from flashbots/overflow-error
Ignore overflow errors on trace decode
This commit is contained in:
commit
2768428eac
@ -38,7 +38,7 @@ class ABIDecoder:
|
||||
|
||||
try:
|
||||
decoded = decode_abi(types, hexstr_to_bytes(params))
|
||||
except (InsufficientDataBytes, NonEmptyPaddingBytes):
|
||||
except (InsufficientDataBytes, NonEmptyPaddingBytes, OverflowError):
|
||||
return None
|
||||
|
||||
return CallData(
|
||||
|
Loading…
x
Reference in New Issue
Block a user