mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
10 lines
177 B
Go
10 lines
177 B
Go
package core
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
)
|
|
|
|
// StateSyncEvent represents state sync events
|
|
type StateSyncEvent struct {
|
|
Data *types.StateSyncData
|
|
}
|