aboutsummaryrefslogtreecommitdiffstats
path: root/pow/dagger
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-04 00:20:34 +0800
committerobscuren <geffobscura@gmail.com>2015-03-04 00:20:34 +0800
commit22b132e28f74cabef38a55874da8e3db93786144 (patch)
tree2ae0e114e8aaf7dfba259c5e64979575bec4004b /pow/dagger
parentee0a1bec6c3ce942e51265535961ac6a745d33eb (diff)
parentde9f79133faa1ff5dcd16fb4fd13d06b7799ded9 (diff)
downloaddexon-22b132e28f74cabef38a55874da8e3db93786144.tar
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.gz
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.bz2
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.lz
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.xz
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.zst
dexon-22b132e28f74cabef38a55874da8e3db93786144.zip
Merge branch 'publictests' of https://github.com/xcthulhu/go-ethereum into xcthulhu-publictests
Diffstat (limited to 'pow/dagger')
-rw-r--r--pow/dagger/dagger.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pow/dagger/dagger.go b/pow/dagger/dagger.go
index 310f8abdd..3da7683d5 100644
--- a/pow/dagger/dagger.go
+++ b/pow/dagger/dagger.go
@@ -44,7 +44,7 @@ func (dag *Dagger) Find(obj *big.Int, resChan chan int64) {
resChan <- 0
}
-func (dag *Dagger) Search(hash, diff *big.Int) *big.Int {
+func (dag *Dagger) Search(hash, diff *big.Int) ([]byte, []byte, []byte) {
// TODO fix multi threading. Somehow it results in the wrong nonce
amountOfRoutines := 1
@@ -69,7 +69,7 @@ func (dag *Dagger) Search(hash, diff *big.Int) *big.Int {
}
}
- return big.NewInt(res)
+ return big.NewInt(res).Bytes(), nil, nil
}
func (dag *Dagger) Verify(hash, diff, nonce *big.Int) bool {