diff options
author | Felix Lange <fjl@twurst.com> | 2015-04-28 19:15:35 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-04-29 08:13:36 +0800 |
commit | 72d88780849c8b70f565319d1c3ee93223274e0b (patch) | |
tree | 1f380f1b1c360a89434fb6126f845978ff80379a /cmd | |
parent | eb5e43022ed9e50853e00a048ced20dcfdb20524 (diff) | |
download | dexon-72d88780849c8b70f565319d1c3ee93223274e0b.tar.gz dexon-72d88780849c8b70f565319d1c3ee93223274e0b.tar.zst dexon-72d88780849c8b70f565319d1c3ee93223274e0b.zip |
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.
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mist/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
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) |