We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed50ce2 commit 3babc50Copy full SHA for 3babc50
cmd/live.go
@@ -165,6 +165,21 @@ func live(_ *cobra.Command, _ []string) {
165
//
166
wallets := getWallets(nodes)
167
168
+ //
169
+ // MIWs
170
171
+ miwSpinner := style.GetSpinner("setting up MIWs...")
172
+ _ = miwSpinner.Start()
173
+
174
+ wwatcher.LoadMIWs()
175
176
+ if len(wwatcher.MIWs) > 0 {
177
+ miwSpinner.StopMessage(fmt.Sprint(fmt.Sprint(style.BoldStyle.Render(fmt.Sprint(len(wwatcher.MIWs))), " MIWs loaded", "\n")))
178
+ _ = miwSpinner.Stop()
179
+ } else {
180
+ _ = miwSpinner.StopFail()
181
+ }
182
183
184
// initialize collections
185
0 commit comments