aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/dagger.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-07-05 02:38:44 +0800
committerzelig <viktor.tron@gmail.com>2014-07-05 02:38:44 +0800
commit584d1c61ec93df3417f2ce8ece041b81a5ec63a6 (patch)
tree2e1ea3d9ef4f81b3d29174022f334f35d06e4623 /ethchain/dagger.go
parentaf2726414078840aae32aa4c982d3a8c5cf66ef5 (diff)
downloadgo-tangerine-584d1c61ec93df3417f2ce8ece041b81a5ec63a6.tar.gz
go-tangerine-584d1c61ec93df3417f2ce8ece041b81a5ec63a6.tar.zst
go-tangerine-584d1c61ec93df3417f2ce8ece041b81a5ec63a6.zip
use ethreact.Event and ethreact.ReactorEngine
Diffstat (limited to 'ethchain/dagger.go')
-rw-r--r--ethchain/dagger.go5
1 files changed, 3 insertions, 2 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