diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-09 20:36:47 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-09 20:36:47 +0800 |
commit | f9b0d1a8e738a207e6101b27b667ea390def9f69 (patch) | |
tree | dae3b1ac912c1bc719837b7c935a607e4ed77dfc /ui | |
parent | c9f566269b39780accfb7632b94dd7635be2022b (diff) | |
download | dexon-f9b0d1a8e738a207e6101b27b667ea390def9f69.tar.gz dexon-f9b0d1a8e738a207e6101b27b667ea390def9f69.tar.zst dexon-f9b0d1a8e738a207e6101b27b667ea390def9f69.zip |
Updated to new ethereum.js api
Diffstat (limited to 'ui')
-rw-r--r-- | ui/qt/qwhisper/whisper.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/qwhisper/whisper.go b/ui/qt/qwhisper/whisper.go index 62b68efaf..8b4628a1b 100644 --- a/ui/qt/qwhisper/whisper.go +++ b/ui/qt/qwhisper/whisper.go @@ -38,7 +38,7 @@ func (self *Whisper) SetView(view qml.Object) { func (self *Whisper) Post(payload []string, to, from string, topics []string, priority, ttl uint32) { var data []byte for _, d := range payload { - data = append(data, ethutil.Hex2Bytes(d)...) + data = append(data, fromHex(d)...) } msg := whisper.NewMessage(data) |