Ignore overflow errors on trace decode
This commit is contained in:
parent
45c74a19ec
commit
f4fb7717dd
@ -38,7 +38,7 @@ class ABIDecoder:
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
decoded = decode_abi(types, hexstr_to_bytes(params))
|
decoded = decode_abi(types, hexstr_to_bytes(params))
|
||||||
except (InsufficientDataBytes, NonEmptyPaddingBytes):
|
except (InsufficientDataBytes, NonEmptyPaddingBytes, OverflowError):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return CallData(
|
return CallData(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user