mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [NOD-1130] Delete rpcadapters.go. * [NOD-1130] Delete p2p. Move rpc to top level. * [NOD-1130] Remove DAGParams from rpcserverConfig. * [NOD-1130] Remove rpcserverPeer, rpcserverConnManager, rpcserverSyncManager, and rpcserverConfig. * [NOD-1130] Remove wallet RPC commands. * [NOD-1130] Remove wallet RPC commands. * [NOD-1130] Remove connmgr and peer. * [NOD-1130] Move rpcmodel into rpc. * [NOD-1130] Implement ConnectionCount. * [NOD-1130] Remove ping and node RPC commands. * [NOD-1130] Dummify handleGetNetTotals. * [NOD-1130] Add NetConnection to Peer. * [NOD-1130] Fix merge errors. * [NOD-1130] Implement Peers. * [NOD-1130] Fix HandleGetConnectedPeerInfo. * [NOD-1130] Fix SendRawTransaction. * [NOD-1130] Rename addManualNode to connect and removeManualNode to disconnect. * [NOD-1130] Add a stub for AddBlock. * [NOD-1130] Fix tests. * [NOD-1130] Replace half-baked contents of RemoveConnection with a stub. * [NOD-1130] Fix merge errors. * [NOD-1130] Make golint happy. * [NOD-1130] Get rid of something weird. * [NOD-1130] Rename minerClient back to client. * [NOD-1130] Add a few fields to GetConnectedPeerInfoResult. * [NOD-1130] Rename oneTry to isPermanent. * [NOD-1130] Implement ConnectionCount in NetAdapter. * [NOD-1130] Move RawMempoolVerbose out of mempool. * [NOD-1130] Move isSynced into the mining package. * [NOD-1130] Fix a compilation error. * [NOD-1130] Make golint happy. * [NOD-1130] Fix merge errors.
100 lines
3.1 KiB
Go
100 lines
3.1 KiB
Go
package rpc
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/kaspanet/kaspad/blockdag"
|
|
"github.com/kaspanet/kaspad/dagconfig"
|
|
"github.com/kaspanet/kaspad/rpc/model"
|
|
"github.com/kaspanet/kaspad/util/daghash"
|
|
"github.com/pkg/errors"
|
|
"strings"
|
|
)
|
|
|
|
// handleGetBlockDAGInfo implements the getBlockDagInfo command.
|
|
func handleGetBlockDAGInfo(s *Server, cmd interface{}, closeChan <-chan struct{}) (interface{}, error) {
|
|
// Obtain a snapshot of the current best known DAG state. We'll
|
|
// populate the response to this call primarily from this snapshot.
|
|
params := s.dag.Params
|
|
dag := s.dag
|
|
|
|
dagInfo := &model.GetBlockDAGInfoResult{
|
|
DAG: params.Name,
|
|
Blocks: dag.BlockCount(),
|
|
Headers: dag.BlockCount(),
|
|
TipHashes: daghash.Strings(dag.TipHashes()),
|
|
Difficulty: getDifficultyRatio(dag.CurrentBits(), params),
|
|
MedianTime: dag.CalcPastMedianTime().UnixMilliseconds(),
|
|
Pruned: false,
|
|
Bip9SoftForks: make(map[string]*model.Bip9SoftForkDescription),
|
|
}
|
|
|
|
// Finally, query the BIP0009 version bits state for all currently
|
|
// defined BIP0009 soft-fork deployments.
|
|
for deployment, deploymentDetails := range params.Deployments {
|
|
// Map the integer deployment ID into a human readable
|
|
// fork-name.
|
|
var forkName string
|
|
switch deployment {
|
|
case dagconfig.DeploymentTestDummy:
|
|
forkName = "dummy"
|
|
|
|
default:
|
|
return nil, &model.RPCError{
|
|
Code: model.ErrRPCInternal.Code,
|
|
Message: fmt.Sprintf("Unknown deployment %d "+
|
|
"detected", deployment),
|
|
}
|
|
}
|
|
|
|
// Query the dag for the current status of the deployment as
|
|
// identified by its deployment ID.
|
|
deploymentStatus, err := dag.ThresholdState(uint32(deployment))
|
|
if err != nil {
|
|
context := "Failed to obtain deployment status"
|
|
return nil, internalRPCError(err.Error(), context)
|
|
}
|
|
|
|
// Attempt to convert the current deployment status into a
|
|
// human readable string. If the status is unrecognized, then a
|
|
// non-nil error is returned.
|
|
statusString, err := softForkStatus(deploymentStatus)
|
|
if err != nil {
|
|
return nil, &model.RPCError{
|
|
Code: model.ErrRPCInternal.Code,
|
|
Message: fmt.Sprintf("unknown deployment status: %d",
|
|
deploymentStatus),
|
|
}
|
|
}
|
|
|
|
// Finally, populate the soft-fork description with all the
|
|
// information gathered above.
|
|
dagInfo.Bip9SoftForks[forkName] = &model.Bip9SoftForkDescription{
|
|
Status: strings.ToLower(statusString),
|
|
Bit: deploymentDetails.BitNumber,
|
|
StartTime: int64(deploymentDetails.StartTime),
|
|
Timeout: int64(deploymentDetails.ExpireTime),
|
|
}
|
|
}
|
|
|
|
return dagInfo, nil
|
|
}
|
|
|
|
// softForkStatus converts a ThresholdState state into a human readable string
|
|
// corresponding to the particular state.
|
|
func softForkStatus(state blockdag.ThresholdState) (string, error) {
|
|
switch state {
|
|
case blockdag.ThresholdDefined:
|
|
return "defined", nil
|
|
case blockdag.ThresholdStarted:
|
|
return "started", nil
|
|
case blockdag.ThresholdLockedIn:
|
|
return "lockedin", nil
|
|
case blockdag.ThresholdActive:
|
|
return "active", nil
|
|
case blockdag.ThresholdFailed:
|
|
return "failed", nil
|
|
default:
|
|
return "", errors.Errorf("unknown deployment state: %s", state)
|
|
}
|
|
}
|