aboutsummaryrefslogtreecommitdiffstats
path: root/core/types
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-18 20:22:59 +0800
committerobscuren <geffobscura@gmail.com>2014-12-18 20:22:59 +0800
commit0dc566124aee24cf3f01b4e586bde7752da89824 (patch)
tree22bfe271447f8b42598b3066cb92d87df93c7095 /core/types
parent721e8ae93f9b8918ff4bc74af86c530bacacea00 (diff)
downloaddexon-0dc566124aee24cf3f01b4e586bde7752da89824.tar
dexon-0dc566124aee24cf3f01b4e586bde7752da89824.tar.gz
dexon-0dc566124aee24cf3f01b4e586bde7752da89824.tar.bz2
dexon-0dc566124aee24cf3f01b4e586bde7752da89824.tar.lz
dexon-0dc566124aee24cf3f01b4e586bde7752da89824.tar.xz
dexon-0dc566124aee24cf3f01b4e586bde7752da89824.tar.zst
dexon-0dc566124aee24cf3f01b4e586bde7752da89824.zip
Merge fixes
Diffstat (limited to 'core/types')
-rw-r--r--core/types/common.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/core/types/common.go b/core/types/common.go
index 89cb5f498..ba88b77e1 100644
--- a/core/types/common.go
+++ b/core/types/common.go
@@ -4,13 +4,8 @@ import (
"math/big"
"github.com/ethereum/go-ethereum/state"
- "github.com/ethereum/go-ethereum/wire"
)
type BlockProcessor interface {
Process(*Block) (*big.Int, state.Messages, error)
}
-
-type Broadcaster interface {
- Broadcast(wire.MsgType, []interface{})
-}