tendermint/rpc/core/status.go

84 lines
2.2 KiB
Go
Raw Normal View History

2015-12-21 15:13:42 -08:00
package core
import (
"time"
2017-04-21 15:13:25 -07:00
data "github.com/tendermint/go-wire/data"
ctypes "github.com/tendermint/tendermint/rpc/core/types"
2015-12-21 15:13:42 -08:00
"github.com/tendermint/tendermint/types"
)
// Get Tendermint status including node info, pubkey, latest block
// hash, app hash, block height and time.
//
// ```shell
// curl 'localhost:46657/status'
// ```
//
// ```go
// client := client.NewHTTP("tcp://0.0.0.0:46657", "/websocket")
// result, err := client.Status()
// ```
//
// > The above command returns JSON structured like this:
//
// ```json
// {
// "result": {
// "syncing": false,
// "latest_block_time": "2017-12-07T18:19:47.617Z",
// "latest_block_height": 6,
// "latest_app_hash": "",
// "latest_block_hash": "A63D0C3307DEDCCFCC82ED411AE9108B70B29E02",
// "pub_key": {
// "data": "8C9A68070CBE33F9C445862BA1E9D96A75CEB68C0CF6ADD3652D07DCAC5D0380",
// "type": "ed25519"
// },
// "node_info": {
// "other": [
// "wire_version=0.7.2",
// "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:46657"
// ],
// "version": "0.13.0-14ccc8b",
// "listen_addr": "10.0.2.15:46656",
// "remote_addr": "",
// "network": "test-chain-qhVCa2",
// "moniker": "vagrant-ubuntu-trusty-64",
// "pub_key": "844981FE99ABB19F7816F2D5E94E8A74276AB1153760A7799E925C75401856C6"
// }
// },
// "id": "",
// "jsonrpc": "2.0"
// }
// ```
2015-12-21 15:13:42 -08:00
func Status() (*ctypes.ResultStatus, error) {
latestHeight := blockStore.Height()
var (
latestBlockMeta *types.BlockMeta
latestBlockHash data.Bytes
latestAppHash data.Bytes
latestBlockTimeNano int64
2015-12-21 15:13:42 -08:00
)
if latestHeight != 0 {
latestBlockMeta = blockStore.LoadBlockMeta(latestHeight)
2017-02-14 12:33:14 -08:00
latestBlockHash = latestBlockMeta.BlockID.Hash
2015-12-21 15:13:42 -08:00
latestAppHash = latestBlockMeta.Header.AppHash
latestBlockTimeNano = latestBlockMeta.Header.Time.UnixNano()
2015-12-21 15:13:42 -08:00
}
latestBlockTime := time.Unix(0, latestBlockTimeNano)
2015-12-21 15:13:42 -08:00
return &ctypes.ResultStatus{
NodeInfo: p2pSwitch.NodeInfo(),
2016-10-14 18:36:42 -07:00
PubKey: pubKey,
2015-12-21 15:13:42 -08:00
LatestBlockHash: latestBlockHash,
LatestAppHash: latestAppHash,
LatestBlockHeight: latestHeight,
LatestBlockTime: latestBlockTime,
2017-07-16 23:44:23 -07:00
Syncing: consensusReactor.FastSync()}, nil
2015-12-21 15:13:42 -08:00
}