mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 21:36:26 +00:00
rpc: Transform /status result.node_info.other into map (#2417)
* [rpc] transform /status result.node_info.other into map * amino does not support maps, duh Refs #2391
This commit is contained in:
committed by
Alexander Simmerl
parent
8ae3334423
commit
fc7f9bcaf6
@@ -83,7 +83,15 @@ type NodeInfo struct {
|
||||
Channels []int8
|
||||
|
||||
Moniker string
|
||||
Other []string
|
||||
Other NodeInfoOther
|
||||
}
|
||||
|
||||
type NodeInfoOther struct {
|
||||
AminoVersion string
|
||||
P2PVersion string
|
||||
ConsensusVersion string
|
||||
RPCVersion string
|
||||
TxIndex string
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user