diff options
author | gluk256 <gluk256@users.noreply.github.com> | 2017-04-28 17:57:15 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-04-28 17:57:15 +0800 |
commit | f9be9a2302dd73fe3cc792167d65f24c7b7d35c4 (patch) | |
tree | f36a8c8a964f16e68b352dc0e750235aff043930 /cmd/wnode | |
parent | 95f0bd0acf301bf8415747c4ff050e8a4dfdc864 (diff) | |
download | dexon-f9be9a2302dd73fe3cc792167d65f24c7b7d35c4.tar.gz dexon-f9be9a2302dd73fe3cc792167d65f24c7b7d35c4.tar.zst dexon-f9be9a2302dd73fe3cc792167d65f24c7b7d35c4.zip |
whisper: switching to v5 + minor refactoring (#14387)
Diffstat (limited to 'cmd/wnode')
-rw-r--r-- | cmd/wnode/main.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cmd/wnode/main.go b/cmd/wnode/main.go index f9b689b65..f18025dff 100644 --- a/cmd/wnode/main.go +++ b/cmd/wnode/main.go @@ -183,7 +183,7 @@ func initialize() { if *testMode { symPass = "wwww" // ascii code: 0x77777777 - msPassword = "mail server test password" + msPassword = "wwww" } if *bootstrapMode { @@ -330,7 +330,7 @@ func configureNode() { if !*asymmetricMode && !*forwarderMode { if len(symPass) == 0 { - symPass, err = console.Stdin.PromptPassword("Please enter the password: ") + symPass, err = console.Stdin.PromptPassword("Please enter the password for symmetric encryption: ") if err != nil { utils.Fatalf("Failed to read passphrase: %v", err) } @@ -347,6 +347,8 @@ func configureNode() { if len(*argTopic) == 0 { generateTopic([]byte(symPass)) } + + fmt.Printf("Filter is configured for the topic: %x \n", topic) } if *mailServerMode { @@ -365,7 +367,6 @@ func configureNode() { if err != nil { utils.Fatalf("Failed to install filter: %s", err) } - fmt.Printf("Filter is configured for the topic: %x \n", topic) } func generateTopic(password []byte) { |