There was an error while loading. Please reload this page.
1 parent ce4e0f5 commit 738cf8bCopy full SHA for 738cf8b
1 file changed
btcd.go
@@ -269,6 +269,9 @@ func btcdMain(serverChan chan<- *server) error {
269
// TODO: this logging could do with some beautifying.
270
btcdLog.Errorf("Unable to start server on %v: %v",
271
cfg.Listeners, err)
272
+ if err.Error() == "interrupt requested" {
273
+ return nil
274
+ }
275
return err
276
}
277
defer func() {
0 commit comments