Skip to content

Commit

Permalink
remove unnecessary '%s' in the format string
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilGeorgiev committed Apr 3, 2024
1 parent a9b1bc5 commit ebd7df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/authz/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func (k Keeper) DeleteGrant(ctx context.Context, grantee, granter sdk.AccAddress
grant, found := k.getGrant(ctx, skey)
if !found {
return errorsmod.Wrapf(authz.ErrNoAuthorizationFound,
"failed to delete grant with key %s given granter: %s, grantee: %s & msgType: %s ", granter.String(), grantee.String(), msgType)
"failed to delete grant with given granter: %s, grantee: %s & msgType: %s ", granter.String(), grantee.String(), msgType)
}

if grant.Expiration != nil {
Expand Down

0 comments on commit ebd7df1

Please sign in to comment.