diff --git a/x/smart-account/authenticator/authentication_request.go b/x/smart-account/authenticator/authentication_request.go index 85e99cf3a54..c128280b9e7 100644 --- a/x/smart-account/authenticator/authentication_request.go +++ b/x/smart-account/authenticator/authentication_request.go @@ -245,8 +245,8 @@ func GenerateAuthenticationRequest( AuthenticatorParams: nil, } - // We do not generate the sign bytes if simulate is true - if simulate { + // We do not generate the sign bytes if simulate is true or isCheckTx is true + if simulate && ctx.IsCheckTx() { return authRequest, nil }