Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
harish551 committed Nov 20, 2023
1 parent 4b4880e commit e08de32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/ics721nft/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func (k Keeper) GetNFT(ctx sdk.Context, classID, tokenID string) (nfttransfer.NF
if err != nil {
return nil, false
}
if nftMetadata.Transferable == false {
if !nftMetadata.Transferable {
k.Logger(ctx).Error("non-transferable nft")
return nil, false
}
Expand Down

0 comments on commit e08de32

Please sign in to comment.