diff options
author | gary rong <garyrong0905@gmail.com> | 2017-11-24 22:10:27 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-11-24 22:10:27 +0800 |
commit | f14047dae57aa69e4fa08d57e19ee9c0283dfa54 (patch) | |
tree | b1b9523a4ce12e2b3cc472bdcf38df7ddbd4bdcc /consensus/ethash/algorithm_test.go | |
parent | b0056f5bd096adf42a2c28cd76264f230c7cae20 (diff) | |
download | go-tangerine-f14047dae57aa69e4fa08d57e19ee9c0283dfa54.tar go-tangerine-f14047dae57aa69e4fa08d57e19ee9c0283dfa54.tar.gz go-tangerine-f14047dae57aa69e4fa08d57e19ee9c0283dfa54.tar.bz2 go-tangerine-f14047dae57aa69e4fa08d57e19ee9c0283dfa54.tar.lz go-tangerine-f14047dae57aa69e4fa08d57e19ee9c0283dfa54.tar.xz go-tangerine-f14047dae57aa69e4fa08d57e19ee9c0283dfa54.tar.zst go-tangerine-f14047dae57aa69e4fa08d57e19ee9c0283dfa54.zip |
cmd, consensus, eth: split ethash related config to it own (#15520)
* cmd, consensus, eth: split ethash related config to it own
* eth, consensus: minor polish
* eth, consenus, console: compress pow testing config field to single one
* consensus, eth: document pow mode
Diffstat (limited to 'consensus/ethash/algorithm_test.go')
-rw-r--r-- | consensus/ethash/algorithm_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/consensus/ethash/algorithm_test.go b/consensus/ethash/algorithm_test.go index 7e4307a74..7765ff9fe 100644 --- a/consensus/ethash/algorithm_test.go +++ b/consensus/ethash/algorithm_test.go @@ -703,8 +703,7 @@ func TestConcurrentDiskCacheGeneration(t *testing.T) { go func(idx int) { defer pend.Done() - - ethash := New(cachedir, 0, 1, "", 0, 0) + ethash := New(Config{cachedir, 0, 1, "", 0, 0, ModeNormal}) if err := ethash.VerifySeal(nil, block.Header()); err != nil { t.Errorf("proc %d: block verification failed: %v", idx, err) } |