aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/types/common.go')
-rw-r--r--core/types/common.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/core/types/common.go b/core/types/common.go
index 795374959..def7936a5 100644
--- a/core/types/common.go
+++ b/core/types/common.go
@@ -1,7 +1,11 @@
package types
-import "math/big"
+import (
+ "math/big"
+
+ "github.com/ethereum/go-ethereum/state"
+)
type BlockProcessor interface {
- Process(*Block) (*big.Int, error)
+ Process(*Block) (*big.Int, state.Logs, error)
}