From d8832766fe26b02ef90b7998b2f0083be77b7b0f Mon Sep 17 00:00:00 2001
From: Jake Taylor <jake@elixxir.io>
Date: Mon, 14 Feb 2022 15:41:19 -0600
Subject: [PATCH] made splitSends default to false

---
 cmd/root.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/root.go b/cmd/root.go
index a3ce0ce3b..c9f094a18 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -1007,7 +1007,7 @@ func init() {
 		"", 500, "The delay between sending the messages in ms")
 	viper.BindPFlag("sendDelay", rootCmd.Flags().Lookup("sendDelay"))
 	rootCmd.Flags().BoolP("splitSends",
-		"", true, "Force sends to go over multiple rounds if possible")
+		"", false, "Force sends to go over multiple rounds if possible")
 	viper.BindPFlag("splitSends", rootCmd.Flags().Lookup("splitSends"))
 
 	rootCmd.Flags().BoolP("verify-sends", "", false,
-- 
GitLab