Add missing else bracket

Add missing else bracket
This commit is contained in:
Phi
2023-05-05 15:21:44 +02:00
parent 075d068ccd
commit 059cbedb40
+6 -3
View File
@@ -1944,7 +1944,9 @@ var sectorsBatchingPendingCommit = &cli.Command{
return nil
}
fmt.Println("No sectors queued to be committed")
} else {
fmt.Println("No sectors queued to be committed")
}
return nil
},
}
@@ -2020,9 +2022,10 @@ var sectorsBatchingPendingPreCommit = &cli.Command{
fmt.Println("Invalid input. Please answer with 'yes' or 'no'.")
return nil
}
}
fmt.Println("No sectors queued to be committed")
} else {
fmt.Println("No sectors queued to be committed")
}
return nil
},
}