core: changed how head events are checked

This commit is contained in:
obscuren
2015-05-15 00:41:27 +02:00
parent 580bae0a86
commit 0f76a1c6df
2 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@ package core
import (
"math/big"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
)
@ -27,6 +28,7 @@ type ChainSplitEvent struct {
type ChainEvent struct {
Block *types.Block
Hash common.Hash
Logs state.Logs
}