-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
C:p2pComponent: P2P pkgComponent: P2P pkgS:proposalStatus: ProposalStatus: ProposalT:breakingType: Breaking ChangeType: Breaking ChangeT:enhancementType: EnhancementType: Enhancement
Milestone
Description
If you want to get a node's other information (such as the /status endpoint) you have to parse the array items:
"other": [
"amino_version=0.12.0",
"p2p_version=0.5.0",
"consensus_version=v1/0.2.2",
"rpc_version=0.7.0/3",
"tx_index=on",
"rpc_addr=tcp://0.0.0.0:26657"
]
Proposal: Change the array to object and change tx_index from on/off to boolean value.
"other": {
"amino_version": "0.12.0",
"p2p_version": "0.5.0",
"consensus_version": "v1/0.2.2",
"rpc_version": "0.7.0/3",
"tx_index": true,
"rpc_addr": "tcp://0.0.0.0:26657"
]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
C:p2pComponent: P2P pkgComponent: P2P pkgS:proposalStatus: ProposalStatus: ProposalT:breakingType: Breaking ChangeType: Breaking ChangeT:enhancementType: EnhancementType: Enhancement