aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-09 20:28:48 +0800
committerobscuren <geffobscura@gmail.com>2015-01-09 20:28:48 +0800
commitc9f566269b39780accfb7632b94dd7635be2022b (patch)
tree13392afd9244021630c6cf4c623960c5594187a8
parentbfa12d75f8c845b85b01c806019b99fb88a79520 (diff)
downloaddexon-c9f566269b39780accfb7632b94dd7635be2022b.tar
dexon-c9f566269b39780accfb7632b94dd7635be2022b.tar.gz
dexon-c9f566269b39780accfb7632b94dd7635be2022b.tar.bz2
dexon-c9f566269b39780accfb7632b94dd7635be2022b.tar.lz
dexon-c9f566269b39780accfb7632b94dd7635be2022b.tar.xz
dexon-c9f566269b39780accfb7632b94dd7635be2022b.tar.zst
dexon-c9f566269b39780accfb7632b94dd7635be2022b.zip
merged
-rw-r--r--cmd/mist/assets/qml/browser.qml1
-rw-r--r--ui/qt/qwhisper/whisper.go2
-rw-r--r--whisper/message.go2
3 files changed, 0 insertions, 5 deletions
diff --git a/cmd/mist/assets/qml/browser.qml b/cmd/mist/assets/qml/browser.qml
index c22e09dc7..2791560ac 100644
--- a/cmd/mist/assets/qml/browser.qml
+++ b/cmd/mist/assets/qml/browser.qml
@@ -333,7 +333,6 @@ Rectangle {
case "shh_newIdentity":
var id = shh.newIdentity()
- console.log("newIdentity", id)
postData(data._id, id)
break
diff --git a/ui/qt/qwhisper/whisper.go b/ui/qt/qwhisper/whisper.go
index 8a064c81c..62b68efaf 100644
--- a/ui/qt/qwhisper/whisper.go
+++ b/ui/qt/qwhisper/whisper.go
@@ -1,7 +1,6 @@
package qwhisper
import (
- "fmt"
"time"
"github.com/ethereum/go-ethereum/crypto"
@@ -42,7 +41,6 @@ func (self *Whisper) Post(payload []string, to, from string, topics []string, pr
data = append(data, ethutil.Hex2Bytes(d)...)
}
- fmt.Println(payload, data, "from", from, fromHex(from), crypto.ToECDSA(fromHex(from)))
msg := whisper.NewMessage(data)
envelope, err := msg.Seal(time.Duration(priority*100000), whisper.Opts{
Ttl: time.Duration(ttl),
diff --git a/whisper/message.go b/whisper/message.go
index 5bda849ec..db0110b4a 100644
--- a/whisper/message.go
+++ b/whisper/message.go
@@ -2,7 +2,6 @@ package whisper
import (
"crypto/ecdsa"
- "fmt"
"time"
"github.com/ethereum/go-ethereum/crypto"
@@ -54,7 +53,6 @@ type Opts struct {
}
func (self *Message) Seal(pow time.Duration, opts Opts) (*Envelope, error) {
- fmt.Println(opts)
if opts.From != nil {
err := self.sign(opts.From)
if err != nil {