diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-05 21:15:05 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-05 21:15:05 +0800 |
commit | 01e1b498312c400b29cc7ca1c32b39a2173722ce (patch) | |
tree | dfa8bf350486c0d548389aa9703595ba699b6c38 /cmd | |
parent | 09d3f2cf2ab190f8d92497b735a1eb248cf2b507 (diff) | |
download | go-tangerine-01e1b498312c400b29cc7ca1c32b39a2173722ce.tar.gz go-tangerine-01e1b498312c400b29cc7ca1c32b39a2173722ce.tar.zst go-tangerine-01e1b498312c400b29cc7ca1c32b39a2173722ce.zip |
reflect ethash changes
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/geth/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 9d517bda1..96f09c20d 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -480,7 +480,7 @@ func makedag(ctx *cli.Context) { chain, _, _ := utils.GetChain(ctx) pow := ethash.New(chain) fmt.Println("making cache") - pow.UpdateCache(true) + pow.UpdateCache(0, true) fmt.Println("making DAG") pow.UpdateDAG() } |