github.com/koko1123/flow-go-1@v0.29.6/model/events/synchronization.go (about)

     1  package events
     2  
     3  import (
     4  	"github.com/koko1123/flow-go-1/model/flow"
     5  	"github.com/koko1123/flow-go-1/model/messages"
     6  )
     7  
     8  type SyncedBlock struct {
     9  	OriginID flow.Identifier
    10  	Block    messages.UntrustedBlock
    11  }
    12  
    13  type SyncedClusterBlock struct {
    14  	OriginID flow.Identifier
    15  	Block    messages.UntrustedClusterBlock
    16  }