aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorJeffrey Wilcke <obscuren@users.noreply.github.com>2014-07-07 16:52:02 +0800
committerJeffrey Wilcke <obscuren@users.noreply.github.com>2014-07-07 16:52:02 +0800
commitb958179263aa1fa5060dd5d5848b8bb092a4165c (patch)
tree9ea81946396fc584c8c8a0b64d9e9f9fff43b17a /ethchain
parentb232acd04ef957fb65e1c49b330165535da7e871 (diff)
parent5a2afc575485e2d651b9840f5d1ea080cdc72fa7 (diff)
downloadgo-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar
go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.gz
go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.bz2
go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.lz
go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.xz
go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.zst
go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.zip
Merge pull request #33 from ethersphere/feature/ethutil-refactor
ethreact - Feature/ethutil refactor
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/dagger.go5
-rw-r--r--ethchain/state_manager.go3
2 files changed, 5 insertions, 3 deletions
diff --git a/ethchain/dagger.go b/ethchain/dagger.go
index 4dda21ff5..adf1c2f05 100644
--- a/ethchain/dagger.go
+++ b/ethchain/dagger.go
@@ -3,6 +3,7 @@ package ethchain
import (
"github.com/ethereum/eth-go/ethcrypto"
"github.com/ethereum/eth-go/ethlog"
+ "github.com/ethereum/eth-go/ethreact"
"github.com/ethereum/eth-go/ethutil"
"github.com/obscuren/sha3"
"hash"
@@ -14,7 +15,7 @@ import (
var powlogger = ethlog.NewLogger("POW")
type PoW interface {
- Search(block *Block, reactChan chan ethutil.React) []byte
+ Search(block *Block, reactChan chan ethreact.Event) []byte
Verify(hash []byte, diff *big.Int, nonce []byte) bool
}
@@ -22,7 +23,7 @@ type EasyPow struct {
hash *big.Int
}
-func (pow *EasyPow) Search(block *Block, reactChan chan ethutil.React) []byte {
+func (pow *EasyPow) Search(block *Block, reactChan chan ethreact.Event) []byte {
r := rand.New(rand.NewSource(time.Now().UnixNano()))
hash := block.HashNoNonce()
diff := block.Difficulty
diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go
index f3fd92913..52a73beb8 100644
--- a/ethchain/state_manager.go
+++ b/ethchain/state_manager.go
@@ -6,6 +6,7 @@ import (
"fmt"
"github.com/ethereum/eth-go/ethcrypto"
"github.com/ethereum/eth-go/ethlog"
+ "github.com/ethereum/eth-go/ethreact"
"github.com/ethereum/eth-go/ethtrie"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethwire"
@@ -36,7 +37,7 @@ type EthManager interface {
BlockChain() *BlockChain
TxPool() *TxPool
Broadcast(msgType ethwire.MsgType, data []interface{})
- Reactor() *ethutil.ReactorEngine
+ Reactor() *ethreact.ReactorEngine
PeerCount() int
IsMining() bool
IsListening() bool