diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-08-08 17:15:08 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-08-10 14:06:59 +0800 |
commit | f0998415ba9a73f0add32f9b5aed2aec98b9a7f3 (patch) | |
tree | f85ad72f6213fc953b3174378d7c7443cc1d1dd5 /consensus/ethash/algorithm_test.go | |
parent | 00e6da9704b2cd7ddcc1cd31ed3f6bbaa8e1e284 (diff) | |
download | go-tangerine-f0998415ba9a73f0add32f9b5aed2aec98b9a7f3.tar go-tangerine-f0998415ba9a73f0add32f9b5aed2aec98b9a7f3.tar.gz go-tangerine-f0998415ba9a73f0add32f9b5aed2aec98b9a7f3.tar.bz2 go-tangerine-f0998415ba9a73f0add32f9b5aed2aec98b9a7f3.tar.lz go-tangerine-f0998415ba9a73f0add32f9b5aed2aec98b9a7f3.tar.xz go-tangerine-f0998415ba9a73f0add32f9b5aed2aec98b9a7f3.tar.zst go-tangerine-f0998415ba9a73f0add32f9b5aed2aec98b9a7f3.zip |
cmd, consensus/ethash, eth: miner push notifications
Diffstat (limited to 'consensus/ethash/algorithm_test.go')
-rw-r--r-- | consensus/ethash/algorithm_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/consensus/ethash/algorithm_test.go b/consensus/ethash/algorithm_test.go index e7625f7c0..db22cccd0 100644 --- a/consensus/ethash/algorithm_test.go +++ b/consensus/ethash/algorithm_test.go @@ -729,7 +729,7 @@ func TestConcurrentDiskCacheGeneration(t *testing.T) { go func(idx int) { defer pend.Done() - ethash := New(Config{cachedir, 0, 1, "", 0, 0, ModeNormal}) + ethash := New(Config{cachedir, 0, 1, "", 0, 0, ModeNormal}, nil) defer ethash.Close() if err := ethash.VerifySeal(nil, block.Header()); err != nil { t.Errorf("proc %d: block verification failed: %v", idx, err) |