diff --git a/config/config.go b/config/config.go index 76cc1a8e3fe..f4672c7aa8e 100644 --- a/config/config.go +++ b/config/config.go @@ -186,7 +186,7 @@ type BaseConfig struct { //nolint: maligned // * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt) // - EXPERIMENTAL // - may be faster is some use-cases (random reads - indexer) - // - use boltdb build tag (go build -tags boltdb) + // - use boltdb build tag (go build -tags boltdb // * rocksdb (uses github.com/tecbot/gorocksdb) // - EXPERIMENTAL // - requires gcc diff --git a/rpc/core/types/responses.go b/rpc/core/types/responses.go index c6ed6eb1999..a6e20e0dd89 100644 --- a/rpc/core/types/responses.go +++ b/rpc/core/types/responses.go @@ -93,9 +93,15 @@ type ValidatorInfo struct { // Node Status type ResultStatus struct { - NodeInfo p2p.DefaultNodeInfo `json:"node_info"` - SyncInfo SyncInfo `json:"sync_info"` - ValidatorInfo ValidatorInfo `json:"validator_info"` + NodeInfo p2p.DefaultNodeInfo `json:"node_info"` + SyncInfo SyncInfo `json:"sync_info"` + ValidatorInfo ValidatorInfo `json:"validator_info"` + DymensionStatus DymensionStatus `json:"dymension_status,omitempty"` +} + +type DymensionStatus struct { + DAPath string `json:"da_path,omitempty"` + RollappParams abci.RollappParams `json:"rollapp_params,omitempty"` } // Is TxIndexing enabled