mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-14 13:51:21 +00:00
fixes from review
This commit is contained in:
@ -46,14 +46,17 @@ Yay open source! Please see our [contributing guidelines](https://tendermint.com
|
|||||||
### Sub-projects
|
### Sub-projects
|
||||||
|
|
||||||
* [TMSP](http://github.com/tendermint/tmsp)
|
* [TMSP](http://github.com/tendermint/tmsp)
|
||||||
* [Ethermint](http://github.com/tendermint/ethermint)
|
|
||||||
* [Basecoin](http://github.com/tendermint/basecoin)
|
|
||||||
* [Mintnet](http://github.com/tendermint/mintnet)
|
* [Mintnet](http://github.com/tendermint/mintnet)
|
||||||
* [Go-Wire](http://github.com/tendermint/go-wire)
|
* [Go-Wire](http://github.com/tendermint/go-wire)
|
||||||
* [Go-P2P](http://github.com/tendermint/go-p2p)
|
* [Go-P2P](http://github.com/tendermint/go-p2p)
|
||||||
* [Go-Merkle](http://github.com/tendermint/go-merkle)
|
* [Go-Merkle](http://github.com/tendermint/go-merkle)
|
||||||
|
|
||||||
### More
|
### Applications
|
||||||
|
|
||||||
|
* [Ethermint](http://github.com/tendermint/ethermint)
|
||||||
|
* [Basecoin](http://github.com/tendermint/basecoin)
|
||||||
|
|
||||||
|
### More
|
||||||
|
|
||||||
* [Tendermint Blog](https://tendermint.com/blog)
|
* [Tendermint Blog](https://tendermint.com/blog)
|
||||||
* [Cosmos Blog](https://cosmos.network/blog)
|
* [Cosmos Blog](https://cosmos.network/blog)
|
||||||
|
@ -9,6 +9,7 @@ import (
|
|||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// TODO: limit/permission on (max - min)
|
||||||
func BlockchainInfo(minHeight, maxHeight int) (*ctypes.ResultBlockchainInfo, error) {
|
func BlockchainInfo(minHeight, maxHeight int) (*ctypes.ResultBlockchainInfo, error) {
|
||||||
if maxHeight == 0 {
|
if maxHeight == 0 {
|
||||||
maxHeight = blockStore.Height()
|
maxHeight = blockStore.Height()
|
||||||
|
@ -30,7 +30,7 @@ func NetInfo() (*ctypes.ResultNetInfo, error) {
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
// Dial given list of seeds
|
// Dial given list of seeds
|
||||||
func DialSeeds(seeds []string) (*ctypes.ResultDialSeeds, error) {
|
func UnsafeDialSeeds(seeds []string) (*ctypes.ResultDialSeeds, error) {
|
||||||
// starts go routines to dial each seed after random delays
|
// starts go routines to dial each seed after random delays
|
||||||
p2pSwitch.DialSeeds(seeds)
|
p2pSwitch.DialSeeds(seeds)
|
||||||
return &ctypes.ResultDialSeeds{}, nil
|
return &ctypes.ResultDialSeeds{}, nil
|
||||||
|
@ -6,30 +6,38 @@ import (
|
|||||||
ctypes "github.com/tendermint/tendermint/rpc/core/types"
|
ctypes "github.com/tendermint/tendermint/rpc/core/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// TODO: better system than "unsafe" prefix
|
||||||
var Routes = map[string]*rpc.RPCFunc{
|
var Routes = map[string]*rpc.RPCFunc{
|
||||||
// subscribe/unsubscribe are reserved for websocket events.
|
// subscribe/unsubscribe are reserved for websocket events.
|
||||||
"subscribe": rpc.NewWSRPCFunc(SubscribeResult, "event"),
|
"subscribe": rpc.NewWSRPCFunc(SubscribeResult, "event"),
|
||||||
"unsubscribe": rpc.NewWSRPCFunc(UnsubscribeResult, "event"),
|
"unsubscribe": rpc.NewWSRPCFunc(UnsubscribeResult, "event"),
|
||||||
|
|
||||||
|
// info API
|
||||||
"status": rpc.NewRPCFunc(StatusResult, ""),
|
"status": rpc.NewRPCFunc(StatusResult, ""),
|
||||||
"net_info": rpc.NewRPCFunc(NetInfoResult, ""),
|
"net_info": rpc.NewRPCFunc(NetInfoResult, ""),
|
||||||
"dial_seeds": rpc.NewRPCFunc(DialSeedsResult, "seeds"),
|
|
||||||
"blockchain": rpc.NewRPCFunc(BlockchainInfoResult, "minHeight,maxHeight"),
|
"blockchain": rpc.NewRPCFunc(BlockchainInfoResult, "minHeight,maxHeight"),
|
||||||
"genesis": rpc.NewRPCFunc(GenesisResult, ""),
|
"genesis": rpc.NewRPCFunc(GenesisResult, ""),
|
||||||
"block": rpc.NewRPCFunc(BlockResult, "height"),
|
"block": rpc.NewRPCFunc(BlockResult, "height"),
|
||||||
"validators": rpc.NewRPCFunc(ValidatorsResult, ""),
|
"validators": rpc.NewRPCFunc(ValidatorsResult, ""),
|
||||||
"dump_consensus_state": rpc.NewRPCFunc(DumpConsensusStateResult, ""),
|
"dump_consensus_state": rpc.NewRPCFunc(DumpConsensusStateResult, ""),
|
||||||
"broadcast_tx_commit": rpc.NewRPCFunc(BroadcastTxCommitResult, "tx"),
|
|
||||||
"broadcast_tx_sync": rpc.NewRPCFunc(BroadcastTxSyncResult, "tx"),
|
|
||||||
"broadcast_tx_async": rpc.NewRPCFunc(BroadcastTxAsyncResult, "tx"),
|
|
||||||
"unconfirmed_txs": rpc.NewRPCFunc(UnconfirmedTxsResult, ""),
|
"unconfirmed_txs": rpc.NewRPCFunc(UnconfirmedTxsResult, ""),
|
||||||
"num_unconfirmed_txs": rpc.NewRPCFunc(NumUnconfirmedTxsResult, ""),
|
"num_unconfirmed_txs": rpc.NewRPCFunc(NumUnconfirmedTxsResult, ""),
|
||||||
|
|
||||||
|
// broadcast API
|
||||||
|
"broadcast_tx_commit": rpc.NewRPCFunc(BroadcastTxCommitResult, "tx"),
|
||||||
|
"broadcast_tx_sync": rpc.NewRPCFunc(BroadcastTxSyncResult, "tx"),
|
||||||
|
"broadcast_tx_async": rpc.NewRPCFunc(BroadcastTxAsyncResult, "tx"),
|
||||||
|
|
||||||
|
// tmsp API
|
||||||
"tmsp_query": rpc.NewRPCFunc(TMSPQueryResult, "query"),
|
"tmsp_query": rpc.NewRPCFunc(TMSPQueryResult, "query"),
|
||||||
"tmsp_info": rpc.NewRPCFunc(TMSPInfoResult, ""),
|
"tmsp_info": rpc.NewRPCFunc(TMSPInfoResult, ""),
|
||||||
|
|
||||||
"unsafe_flush_mempool": rpc.NewRPCFunc(UnsafeFlushMempool, ""),
|
// control API
|
||||||
"unsafe_set_config": rpc.NewRPCFunc(UnsafeSetConfigResult, "type,key,value"),
|
"dial_seeds": rpc.NewRPCFunc(UnsafeDialSeedsResult, "seeds"),
|
||||||
|
"unsafe_flush_mempool": rpc.NewRPCFunc(UnsafeFlushMempool, ""),
|
||||||
|
"unsafe_set_config": rpc.NewRPCFunc(UnsafeSetConfigResult, "type,key,value"),
|
||||||
|
|
||||||
|
// profiler API
|
||||||
"unsafe_start_cpu_profiler": rpc.NewRPCFunc(UnsafeStartCPUProfilerResult, "filename"),
|
"unsafe_start_cpu_profiler": rpc.NewRPCFunc(UnsafeStartCPUProfilerResult, "filename"),
|
||||||
"unsafe_stop_cpu_profiler": rpc.NewRPCFunc(UnsafeStopCPUProfilerResult, ""),
|
"unsafe_stop_cpu_profiler": rpc.NewRPCFunc(UnsafeStopCPUProfilerResult, ""),
|
||||||
"unsafe_write_heap_profile": rpc.NewRPCFunc(UnsafeWriteHeapProfileResult, "filename"),
|
"unsafe_write_heap_profile": rpc.NewRPCFunc(UnsafeWriteHeapProfileResult, "filename"),
|
||||||
@ -67,8 +75,8 @@ func NetInfoResult() (ctypes.TMResult, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func DialSeedsResult(seeds []string) (ctypes.TMResult, error) {
|
func UnsafeDialSeedsResult(seeds []string) (ctypes.TMResult, error) {
|
||||||
if r, err := DialSeeds(seeds); err != nil {
|
if r, err := UnsafeDialSeeds(seeds); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
} else {
|
} else {
|
||||||
return r, nil
|
return r, nil
|
||||||
|
Reference in New Issue
Block a user