quorum/raft/events.go

14 lines
247 B
Go

package raft
import (
"github.com/ethereum/go-ethereum/core/types"
)
type InvalidRaftOrdering struct {
// Current head of the chain
headBlock *types.Block
// New block that should point to the head, but doesn't
invalidBlock *types.Block
}