Skip to content

Commit efc2ad7

Browse files
committed
Add WrongNonce error for EVM to skip
1 parent d35d8de commit efc2ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/cld/legacy/cli/mcmsv2/mcms_v2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ func isNonceError(rawErr error, selector uint64) (bool, error) {
11431143
case chainsel.FamilyEVM:
11441144
decodedErr := cldf.DecodeErr(bindings.ManyChainMultiSigABI, rawErr)
11451145
// Check if the error contains PostOpCountReached
1146-
if strings.Contains(decodedErr.Error(), "PostOpCountReached") {
1146+
if strings.Contains(decodedErr.Error(), "WrongNonce") || strings.Contains(decodedErr.Error(), "PostOpCountReached") {
11471147
return true, nil
11481148
}
11491149

0 commit comments

Comments
 (0)