Skip to content

Commit

Permalink
storage: correct nft id type
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-wh committed Jan 16, 2024
1 parent 8570a58 commit c5053ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/client/queries/queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ const (
WHERE
chain.evm_nfts.runtime = $1::runtime AND
($2::oasis_addr IS NULL OR chain.evm_nfts.token_address = $2::oasis_addr) AND
($3::bigint IS NULL OR chain.evm_nfts.nft_id = $3::bigint) AND
($3::bigint IS NULL OR chain.evm_nfts.nft_id = $3::uint_numeric) AND
($4::oasis_addr IS NULL OR chain.evm_nfts.owner = $4::oasis_addr)
ORDER BY token_address, nft_id
LIMIT $5::bigint
Expand Down

0 comments on commit c5053ea

Please sign in to comment.