github.com/sixexorg/magnetic-ring@v0.0.0-20191119090307-31705a21e419/consense/actor/message.go (about)

     1  package actor
     2  
     3  import "github.com/sixexorg/magnetic-ring/core/mainchain/types"
     4  
     5  type StartConsensus struct{}
     6  type StopConsensus struct{}
     7  
     8  //internal Message
     9  type TimeOut struct{}
    10  type BlockCompleted struct {
    11  	Block *types.Block
    12  }