github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/model/events/synchronization.go (about)

     1  package events
     2  
     3  import (
     4  	"github.com/onflow/flow-go/model/flow"
     5  	"github.com/onflow/flow-go/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  }