aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-04-28 19:15:35 +0800
committerFelix Lange <fjl@twurst.com>2015-04-29 08:13:36 +0800
commit72d88780849c8b70f565319d1c3ee93223274e0b (patch)
tree1f380f1b1c360a89434fb6126f845978ff80379a /cmd
parenteb5e43022ed9e50853e00a048ced20dcfdb20524 (diff)
downloadgo-tangerine-72d88780849c8b70f565319d1c3ee93223274e0b.tar
go-tangerine-72d88780849c8b70f565319d1c3ee93223274e0b.tar.gz
go-tangerine-72d88780849c8b70f565319d1c3ee93223274e0b.tar.bz2
go-tangerine-72d88780849c8b70f565319d1c3ee93223274e0b.tar.lz
go-tangerine-72d88780849c8b70f565319d1c3ee93223274e0b.tar.xz
go-tangerine-72d88780849c8b70f565319d1c3ee93223274e0b.tar.zst
go-tangerine-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.go1
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)