github.com/kisexp/xdchain@v0.0.0-20211206025815-490d6b732aa7/raft/events.go (about) 1 package raft 2 3 import ( 4 "github.com/kisexp/xdchain/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 }