Commit 533a74e3 authored by 张振华's avatar 张振华

fix lint warnings

parent 1ff6da03
...@@ -41,7 +41,7 @@ var VotedStateObj = &VotedState{} ...@@ -41,7 +41,7 @@ var VotedStateObj = &VotedState{}
// WaitNotifyStateObj is the WaitNotifyState obj // WaitNotifyStateObj is the WaitNotifyState obj
var WaitNotifyStateObj = &WaitNofifyState{} var WaitNotifyStateObj = &WaitNofifyState{}
// DPosTask 为计算当前时间所属周期的数据结构 // Task 为计算当前时间所属周期的数据结构
type Task struct { type Task struct {
nodeID int64 nodeID int64
cycleStart int64 cycleStart int64
...@@ -68,7 +68,7 @@ func DecideTaskByTime(now int64) (task Task) { ...@@ -68,7 +68,7 @@ func DecideTaskByTime(now int64) (task Task) {
return task return task
} }
// DposState is the base class of dpos state machine, it defines some interfaces. // State is the base class of dpos state machine, it defines some interfaces.
type State interface { type State interface {
timeOut(cs *ConsensusState) timeOut(cs *ConsensusState)
sendVote(cs *ConsensusState, vote *dpostype.DPosVote) sendVote(cs *ConsensusState, vote *dpostype.DPosVote)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment