diff options
Diffstat (limited to 'cmd/wnode')
-rw-r--r-- | cmd/wnode/main.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/wnode/main.go b/cmd/wnode/main.go index 988c50ce3..5031a088c 100644 --- a/cmd/wnode/main.go +++ b/cmd/wnode/main.go @@ -271,7 +271,9 @@ func initialize() { if *mailServerMode { shh.RegisterServer(&mailServer) - mailServer.Init(shh, *argDBPath, msPassword, *argServerPoW) + if err := mailServer.Init(shh, *argDBPath, msPassword, *argServerPoW); err != nil { + utils.Fatalf("Failed to init MailServer: %s", err) + } } server = &p2p.Server{ |