diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-04-10 22:03:08 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-04-10 22:03:08 +0800 |
commit | f8a4cd7ec17774ad841f85241855820424ccfd2d (patch) | |
tree | 855b8de8ec1852db58754a3e6026f702b9b6c406 /ui | |
parent | 0e4f21fc376fae88b59cb33a06a1ddd36a11a592 (diff) | |
download | dexon-f8a4cd7ec17774ad841f85241855820424ccfd2d.tar.gz dexon-f8a4cd7ec17774ad841f85241855820424ccfd2d.tar.zst dexon-f8a4cd7ec17774ad841f85241855820424ccfd2d.zip |
xeth/whisper, ui/qt/qwhisper: fix API update breaks.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/qt/qwhisper/whisper.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/qwhisper/whisper.go b/ui/qt/qwhisper/whisper.go index bf165bbcc..3c2d0a4b9 100644 --- a/ui/qt/qwhisper/whisper.go +++ b/ui/qt/qwhisper/whisper.go @@ -37,8 +37,8 @@ func (self *Whisper) Post(payload []string, to, from string, topics []string, pr pk := crypto.ToECDSAPub(common.FromHex(from)) if key := self.Whisper.GetIdentity(pk); key != nil { msg := whisper.NewMessage(data) - envelope, err := msg.Seal(time.Duration(priority*100000), whisper.Opts{ - Ttl: time.Duration(ttl) * time.Second, + envelope, err := msg.Wrap(time.Duration(priority*100000), whisper.Options{ + TTL: time.Duration(ttl) * time.Second, To: crypto.ToECDSAPub(common.FromHex(to)), From: key, Topics: whisper.TopicsFromString(topics...), |