We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd1374 commit f9bb9a8Copy full SHA for f9bb9a8
rpc/client.py
@@ -123,5 +123,5 @@ async def block_count(self) -> Tuple[int, int]:
123
}
124
respjson = await self.make_request(count_action)
125
if 'count' in respjson and 'unchecked' in respjson:
126
- return respjson['count'], respjson['unchecked']
+ return int(respjson['count']), int(respjson['unchecked'])
127
return None, None
0 commit comments