aboutsummaryrefslogtreecommitdiffstats
path: root/core/types
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-19 23:19:54 +0800
committerobscuren <geffobscura@gmail.com>2015-03-19 23:19:54 +0800
commit14a2f42f3700640f191e0095b50a266d2a919b38 (patch)
treee22528f68c7bdab57a8cdfbcddc29df06c15457a /core/types
parentb52807f0c0ff1b89cc1d7172ce1b768a34d02b00 (diff)
downloaddexon-14a2f42f3700640f191e0095b50a266d2a919b38.tar
dexon-14a2f42f3700640f191e0095b50a266d2a919b38.tar.gz
dexon-14a2f42f3700640f191e0095b50a266d2a919b38.tar.bz2
dexon-14a2f42f3700640f191e0095b50a266d2a919b38.tar.lz
dexon-14a2f42f3700640f191e0095b50a266d2a919b38.tar.xz
dexon-14a2f42f3700640f191e0095b50a266d2a919b38.tar.zst
dexon-14a2f42f3700640f191e0095b50a266d2a919b38.zip
fixed chain event. Closes #529
Diffstat (limited to 'core/types')
-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)
}