diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-20 05:33:22 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-20 05:33:22 +0800 |
commit | fa4cbad315609e41d88c59ecbce7c6c6169fc57a (patch) | |
tree | 5af4a3cfd497e682e41898059571b75f6f8e4cf9 /pow/ezp | |
parent | c14071df9da4ab3f5b372293e87184af9b91c09e (diff) | |
download | go-tangerine-fa4cbad315609e41d88c59ecbce7c6c6169fc57a.tar go-tangerine-fa4cbad315609e41d88c59ecbce7c6c6169fc57a.tar.gz go-tangerine-fa4cbad315609e41d88c59ecbce7c6c6169fc57a.tar.bz2 go-tangerine-fa4cbad315609e41d88c59ecbce7c6c6169fc57a.tar.lz go-tangerine-fa4cbad315609e41d88c59ecbce7c6c6169fc57a.tar.xz go-tangerine-fa4cbad315609e41d88c59ecbce7c6c6169fc57a.tar.zst go-tangerine-fa4cbad315609e41d88c59ecbce7c6c6169fc57a.zip |
Optimisations and fixed a couple of DDOS issues in the miner
Diffstat (limited to 'pow/ezp')
-rw-r--r-- | pow/ezp/pow.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pow/ezp/pow.go b/pow/ezp/pow.go index 540381243..f4a8b80e5 100644 --- a/pow/ezp/pow.go +++ b/pow/ezp/pow.go @@ -21,7 +21,7 @@ type EasyPow struct { } func New() *EasyPow { - return &EasyPow{turbo: false} + return &EasyPow{turbo: true} } func (pow *EasyPow) GetHashrate() int64 { |