Skip to content

Commit

Permalink
fix nft fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
slandymani committed Oct 9, 2024
1 parent 4fb103d commit a4f7702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/nft/handle_msg.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (m *Module) handleMsgExecuteContract(index int, tx *juno.Transaction, _ *wa
return errors.New("error while searching for nft_id")
}

n, err := m.source.NFT(int64(tx.Height), nftID.Value, classID.Value)
n, err := m.source.NFT(int64(tx.Height), classID.Value, nftID.Value)
if err != nil {
return fmt.Errorf("failed to fetch nft: %s", err)
}
Expand Down

0 comments on commit a4f7702

Please sign in to comment.