aboutsummaryrefslogtreecommitdiffstats
path: root/consensus
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-08-17 23:12:39 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-08-17 23:12:39 +0800
commit251c868008f30b2991bc6986e60a0e7bbdc78b05 (patch)
tree75115318855d185471a2bcb4443642ef6d3b303a /consensus
parent99e1a5e0fb6f238319042dd2c4c8468dc786a4b7 (diff)
downloaddexon-251c868008f30b2991bc6986e60a0e7bbdc78b05.tar
dexon-251c868008f30b2991bc6986e60a0e7bbdc78b05.tar.gz
dexon-251c868008f30b2991bc6986e60a0e7bbdc78b05.tar.bz2
dexon-251c868008f30b2991bc6986e60a0e7bbdc78b05.tar.lz
dexon-251c868008f30b2991bc6986e60a0e7bbdc78b05.tar.xz
dexon-251c868008f30b2991bc6986e60a0e7bbdc78b05.tar.zst
dexon-251c868008f30b2991bc6986e60a0e7bbdc78b05.zip
consensus/ethash: reduce notify test aggressiveness
Diffstat (limited to 'consensus')
-rw-r--r--consensus/ethash/sealer_test.go2
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) {