From fb3e47117227187f88af5a73e6bd13796f8bba0d Mon Sep 17 00:00:00 2001 From: Gregory Bednov Date: Tue, 12 Aug 2025 14:54:35 +0300 Subject: [PATCH] changed depth of channel --- cli/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/root.go b/cli/root.go index 7375875..1a7efc4 100644 --- a/cli/root.go +++ b/cli/root.go @@ -51,7 +51,7 @@ var rootCmd = &cobra.Command{ } ctx, cancel := context.WithCancel(context.Background()) - laddrReturner := make(chan string, 2) + laddrReturner := make(chan string, 3) go yggdrasil.Yggdrasil(v, laddrReturner) go blockchain.Run(ctx, dbPath, config, laddrReturner)