Fabien Penso
Fabien Penso
As a follow-up, the way I "fixed" it is using my own code with reqwest (and not tendermint-rs) to fetch status information from nodes.
The proto file at https://github.com/cometbft/cometbft/blob/main/proto/cometbft/abci/v1/types.proto#L467 shows the `type` field isn't optional, the generated Rust struct from the proto file wouldn't be optional either and same bug would occur. You'd need...
Ah nice, wasn't aware all fields were optional. I agree as much as possible should be automated from proto files when possible, my internal code uses default Serde `Serialize` I...
Someone on a channel said there is the same issue on sei devnet
Would be really nice to see this merged.
Damn would love this to be merged.
Another one for this, have this exact need.
I have similar need where I'd like to get JSON version of `cosmrs::bank::MsgSend` and other proto related structs and having serde derives on those would make my life way easier....