diff --git a/core/scripts/ccip/revert-reason/handler/reason.go b/core/scripts/ccip/revert-reason/handler/reason.go index 6836a1e2e5..dc51f52d5e 100644 --- a/core/scripts/ccip/revert-reason/handler/reason.go +++ b/core/scripts/ccip/revert-reason/handler/reason.go @@ -75,7 +75,7 @@ func DecodeErrorStringFromABI(errorString string) (string, error) { } // If exec error, the actual error is within the revert reason - if errorName == "ExecutionError" || errorName == "TokenRateLimitError" { + if errorName == "ExecutionError" || errorName == "TokenRateLimitError" || errorName == "TokenHandlingError" { // Get the inner type, which is `bytes` fmt.Printf("Error is \"%v\" inner error: ", errorName) errorBytes := v.([]interface{})[0].([]byte)