From 02700df5f67678a30a5ced700a113e280fa0eb0f Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Thu, 24 Aug 2017 21:42:26 +0200 Subject: [PATCH] accounts/keystore: Modify wallet notification test, increase channel buffer --- accounts/keystore/keystore_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/keystore/keystore_test.go b/accounts/keystore/keystore_test.go index 132b74439e..a90de4ca85 100644 --- a/accounts/keystore/keystore_test.go +++ b/accounts/keystore/keystore_test.go @@ -280,7 +280,7 @@ func TestWalletNotifications(t *testing.T) { defer os.RemoveAll(dir) // Subscribe to the wallet feed - updates := make(chan accounts.WalletEvent, 1) + updates := make(chan accounts.WalletEvent, 100) sub := ks.Subscribe(updates) defer sub.Unsubscribe()