github.com/bigzoro/my_simplechain@v0.0.0-20240315012955-8ad0a2a29bb9/consensus/raft/events.go (about)

     1  package raft
     2  
     3  import (
     4  	"github.com/bigzoro/my_simplechain/core/types"
     5  )
     6  
     7  type InvalidRaftOrdering struct {
     8  	// Current head of the chain
     9  	HeadBlock *types.Block
    10  
    11  	// New block that should point to the head, but doesn't
    12  	InvalidBlock *types.Block
    13  }