Add missing else bracket
Add missing else bracket
This commit is contained in:
parent
075d068ccd
commit
059cbedb40
@ -1944,7 +1944,9 @@ var sectorsBatchingPendingCommit = &cli.Command{
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println("No sectors queued to be committed")
|
} else {
|
||||||
|
fmt.Println("No sectors queued to be committed")
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@ -2020,9 +2022,10 @@ var sectorsBatchingPendingPreCommit = &cli.Command{
|
|||||||
fmt.Println("Invalid input. Please answer with 'yes' or 'no'.")
|
fmt.Println("Invalid input. Please answer with 'yes' or 'no'.")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
fmt.Println("No sectors queued to be committed")
|
} else {
|
||||||
|
fmt.Println("No sectors queued to be committed")
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user