Skip to content

Commit

Permalink
hardcode num param when listing NFTs from CLI (#15293)
Browse files Browse the repository at this point in the history
  • Loading branch information
paninaro committed May 16, 2023
1 parent 676b14f commit 2aadff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/rpc/wallet_rpc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ async def count_nfts(self, wallet_id: Optional[int]):
return response

async def list_nfts(self, wallet_id):
request: Dict[str, Any] = {"wallet_id": wallet_id}
request: Dict[str, Any] = {"wallet_id": wallet_id, "num": 100_000}
response = await self.fetch("nft_get_nfts", request)
return response

Expand Down

0 comments on commit 2aadff6

Please sign in to comment.