diff --git a/chia/rpc/wallet_rpc_client.py b/chia/rpc/wallet_rpc_client.py index eb0d136876d5..d7b4f476480f 100644 --- a/chia/rpc/wallet_rpc_client.py +++ b/chia/rpc/wallet_rpc_client.py @@ -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