chia-blockchain
1. chia/rpc/wallet_rpc_api.py
Maybe just a typo
if not isinstance(request["amount"], int) or not isinstance(request["amount"], int):

It is not obvious whether request["fee"] is Optional.

2. chia/rpc/farmer_rpc_api.py, chia/harvester/harvester_api.py,
It seems response could not be harvester_protocol_ResponsePlots for data format incompatibility.
I think format of response contains binary stream data, but later it is assumed to be a python dict.



3. chia/rpc/full_node_api.py
sync_tip_height seems always having value, so need not to be Optional

4. chia/protocols/pool_protocol.py
Shouldn't TGetFarmerRequest be here?
chia-blockchain
1. chia/rpc/wallet_rpc_api.py
Maybe just a typo
if not isinstance(request["amount"], int) or not isinstance(request["amount"], int):It is not obvious whether

request["fee"]is Optional.2. chia/rpc/farmer_rpc_api.py, chia/harvester/harvester_api.py,
It seems
responsecould not beharvester_protocol_ResponsePlotsfor data format incompatibility.I think format of
responsecontains binary stream data, but later it is assumed to be a python dict.3. chia/rpc/full_node_api.py
sync_tip_heightseems always having value, so need not to beOptional4. chia/protocols/pool_protocol.py
Shouldn't
TGetFarmerRequestbe here?