diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-22 02:13:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-22 02:13:26 +0800 |
commit | 732573ba512aa215e88aed3f20393c3c42c1aeb0 (patch) | |
tree | f568ee70952f740a380384afb3ccf2d75a2bddb6 /ethchain | |
parent | 854d6d4e5cb8783e18397fef655ad79065263cc2 (diff) | |
download | dexon-732573ba512aa215e88aed3f20393c3c42c1aeb0.tar.gz dexon-732573ba512aa215e88aed3f20393c3c42c1aeb0.tar.zst dexon-732573ba512aa215e88aed3f20393c3c42c1aeb0.zip |
Turbo mining
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/dagger.go | 8 | ||||
-rw-r--r-- | ethchain/genesis.go | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ethchain/dagger.go b/ethchain/dagger.go index 065d2c843..478b7e877 100644 --- a/ethchain/dagger.go +++ b/ethchain/dagger.go @@ -42,6 +42,7 @@ func (pow *EasyPow) Search(block *Block, reactChan chan ethreact.Event) []byte { diff := block.Difficulty i := int64(0) start := time.Now().UnixNano() + t := time.Now() for { select { @@ -50,11 +51,14 @@ func (pow *EasyPow) Search(block *Block, reactChan chan ethreact.Event) []byte { return nil default: i++ - if i%1234567 == 0 { + + if time.Since(t) > (1 * time.Second) { elapsed := time.Now().UnixNano() - start hashes := ((float64(1e9) / float64(elapsed)) * float64(i)) / 1000 pow.HashRate = int64(hashes) powlogger.Infoln("Hashing @", int64(pow.HashRate), "khash") + + t = time.Now() } sha := ethcrypto.Sha3Bin(big.NewInt(r.Int63()).Bytes()) @@ -64,7 +68,7 @@ func (pow *EasyPow) Search(block *Block, reactChan chan ethreact.Event) []byte { } if !pow.turbo { - time.Sleep(500 * time.Millisecond) + time.Sleep(20 * time.Microsecond) } } diff --git a/ethchain/genesis.go b/ethchain/genesis.go index 0ce53a6ee..8a1219acb 100644 --- a/ethchain/genesis.go +++ b/ethchain/genesis.go @@ -28,7 +28,7 @@ var GenesisHeader = []interface{}{ "", // Difficulty //ethutil.BigPow(2, 22), - big.NewInt(4096), + big.NewInt(131072), // Number ethutil.Big0, // Block minimum gas price |