Skip to content

Commit

Permalink
fix: smart account signing checktx error
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddyMc committed Sep 3, 2024
1 parent 362a01b commit 3c32690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/smart-account/authenticator/authentication_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 3c32690

Please sign in to comment.