github.com/bhs-gq/quorum-hotstuff@v21.1.0+incompatible/raft/events.go (about)

     1  package raft
     2  
     3  import (
     4  	"github.com/ethereum/go-ethereum/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  }