github.com/sixexorg/magnetic-ring@v0.0.0-20191119090307-31705a21e419/store/orgchain/actor/consensus.go (about)

     1  package actor
     2  
     3  import "github.com/ontio/ontology-eventbus/actor"
     4  
     5  var ConsensusPid *actor.PID
     6  
     7  func SetConsensusPid(conPid *actor.PID) {
     8  	ConsensusPid = conPid
     9  }
    10  
    11  type CurHeight struct {
    12  	Height uint64
    13  }