From 72d88780849c8b70f565319d1c3ee93223274e0b Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 28 Apr 2015 13:15:35 +0200 Subject: [PATCH] cmd/mist: always enable whisper The default value of the Shh option is true, but cli can't see it because it is not part of the mist options. --- cmd/mist/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/mist/main.go b/cmd/mist/main.go index 87181011f..1030d6ada 100644 --- a/cmd/mist/main.go +++ b/cmd/mist/main.go @@ -116,6 +116,7 @@ func run(ctx *cli.Context) { // TODO: show qml popup instead of exiting if initialization fails. cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx) + cfg.Shh = true ethereum, err := eth.New(cfg) if err != nil { utils.Fatalf("%v", err)