diff options
author | Bas van Kervel <basvankervel@gmail.com> | 2017-06-21 18:58:00 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2017-06-21 18:58:00 +0800 |
commit | c62d5422bb24cfa53ee480330f9d355f68c071a4 (patch) | |
tree | 4bfb3e6a2149e89509e999a60f3066fb3acf87f4 /cmd/geth/consolecmd.go | |
parent | a4e4c76cb30f34f8a06431802fdc3b9ba0643d47 (diff) | |
download | dexon-c62d5422bb24cfa53ee480330f9d355f68c071a4.tar.gz dexon-c62d5422bb24cfa53ee480330f9d355f68c071a4.tar.zst dexon-c62d5422bb24cfa53ee480330f9d355f68c071a4.zip |
whisper: use hexutil.UnmarshalFixedText for topic parsing
Diffstat (limited to 'cmd/geth/consolecmd.go')
-rw-r--r-- | cmd/geth/consolecmd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/consolecmd.go b/cmd/geth/consolecmd.go index f8a923aac..2bb452d73 100644 --- a/cmd/geth/consolecmd.go +++ b/cmd/geth/consolecmd.go @@ -35,7 +35,7 @@ var ( Action: utils.MigrateFlags(localConsole), Name: "console", Usage: "Start an interactive JavaScript environment", - Flags: append(append(nodeFlags, rpcFlags...), consoleFlags...), + Flags: append(append(append(nodeFlags, rpcFlags...), consoleFlags...), whisperFlags...), Category: "CONSOLE COMMANDS", Description: ` The Geth console is an interactive shell for the JavaScript runtime environment |