diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-08-20 20:11:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-20 20:11:49 +0800 |
commit | 68f0a414eadda4c5485e4e96bda9c4b8b54eda6d (patch) | |
tree | bdc6796c0f661c6e68747d7d499dadeef6147b86 | |
parent | 55d050ccd81d726ce47cfb57ecd9de662129b7f1 (diff) | |
parent | 251c868008f30b2991bc6986e60a0e7bbdc78b05 (diff) | |
download | dexon-68f0a414eadda4c5485e4e96bda9c4b8b54eda6d.tar dexon-68f0a414eadda4c5485e4e96bda9c4b8b54eda6d.tar.gz dexon-68f0a414eadda4c5485e4e96bda9c4b8b54eda6d.tar.bz2 dexon-68f0a414eadda4c5485e4e96bda9c4b8b54eda6d.tar.lz dexon-68f0a414eadda4c5485e4e96bda9c4b8b54eda6d.tar.xz dexon-68f0a414eadda4c5485e4e96bda9c4b8b54eda6d.tar.zst dexon-68f0a414eadda4c5485e4e96bda9c4b8b54eda6d.zip |
Merge pull request #17430 from karalabe/miner-notify-less-aggressive-test
consensus/ethash: reduce notify test aggressiveness
-rw-r--r-- | consensus/ethash/sealer_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/consensus/ethash/sealer_test.go b/consensus/ethash/sealer_test.go index 6d8a77049..6c7157a5a 100644 --- a/consensus/ethash/sealer_test.go +++ b/consensus/ethash/sealer_test.go @@ -70,7 +70,7 @@ func TestRemoteNotify(t *testing.T) { // issues in the notifications. func TestRemoteMultiNotify(t *testing.T) { // Start a simple webserver to capture notifications - sink := make(chan [3]string, 1024) + sink := make(chan [3]string, 64) server := &http.Server{ Handler: http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { |