github.com/r8d8/go-ethereum@v5.5.2+incompatible/eth/downloader/events.go (about)

     1  package downloader
     2  
     3  import (
     4  	"github.com/ethereumproject/go-ethereum/core"
     5  )
     6  
     7  type InsertChainEvent struct {
     8  	core.ChainInsertEvent
     9  }
    10  
    11  type InsertReceiptChainEvent struct {
    12  	core.ReceiptChainInsertEvent
    13  	Pivot bool
    14  }
    15  
    16  type InsertHeaderChainEvent struct {
    17  	core.HeaderChainInsertEvent
    18  }