aboutsummaryrefslogtreecommitdiffstats
path: root/pow
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-06-12 13:45:23 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-10-07 19:19:30 +0800
commitec6a548ee3555813d83f86f82bd25694bfd9c303 (patch)
tree9d0ec5022dc952f7b1053b85382df07347bc48f0 /pow
parent8b865fa9bf75e728d5d76f5a1460e0c37d8b5f9e (diff)
downloaddexon-ec6a548ee3555813d83f86f82bd25694bfd9c303.tar
dexon-ec6a548ee3555813d83f86f82bd25694bfd9c303.tar.gz
dexon-ec6a548ee3555813d83f86f82bd25694bfd9c303.tar.bz2
dexon-ec6a548ee3555813d83f86f82bd25694bfd9c303.tar.lz
dexon-ec6a548ee3555813d83f86f82bd25694bfd9c303.tar.xz
dexon-ec6a548ee3555813d83f86f82bd25694bfd9c303.tar.zst
dexon-ec6a548ee3555813d83f86f82bd25694bfd9c303.zip
all: Add GPU mining, disabled by default
Diffstat (limited to 'pow')
-rw-r--r--pow/ezp/pow.go2
-rw-r--r--pow/pow.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/pow/ezp/pow.go b/pow/ezp/pow.go
index 03bb3da29..f7ae1cbf1 100644
--- a/pow/ezp/pow.go
+++ b/pow/ezp/pow.go
@@ -48,7 +48,7 @@ func (pow *EasyPow) Turbo(on bool) {
pow.turbo = on
}
-func (pow *EasyPow) Search(block pow.Block, stop <-chan struct{}) (uint64, []byte) {
+func (pow *EasyPow) Search(block pow.Block, stop <-chan struct{}, index int) (uint64, []byte) {
r := rand.New(rand.NewSource(time.Now().UnixNano()))
hash := block.HashNoNonce()
diff := block.Difficulty()
diff --git a/pow/pow.go b/pow/pow.go
index 22daf35e4..592d96475 100644
--- a/pow/pow.go
+++ b/pow/pow.go
@@ -17,7 +17,7 @@
package pow
type PoW interface {
- Search(block Block, stop <-chan struct{}) (uint64, []byte)
+ Search(block Block, stop <-chan struct{}, index int) (uint64, []byte)
Verify(block Block) bool
GetHashrate() int64
Turbo(bool)