diff options
author | Felix Lange <fjl@twurst.com> | 2015-04-17 20:10:55 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-04-17 20:10:55 +0800 |
commit | 4020258801febb9cb3fc221245812fae07d1f2a5 (patch) | |
tree | 731965ea36c39d23afba99cac199bc120d7f31fb /xeth | |
parent | d3ed3285e942e312ef2ded2671a09e717e97f33f (diff) | |
parent | 4afc22ba6e79fe951256251444b4a5b8d38b50fb (diff) | |
download | dexon-4020258801febb9cb3fc221245812fae07d1f2a5.tar dexon-4020258801febb9cb3fc221245812fae07d1f2a5.tar.gz dexon-4020258801febb9cb3fc221245812fae07d1f2a5.tar.bz2 dexon-4020258801febb9cb3fc221245812fae07d1f2a5.tar.lz dexon-4020258801febb9cb3fc221245812fae07d1f2a5.tar.xz dexon-4020258801febb9cb3fc221245812fae07d1f2a5.tar.zst dexon-4020258801febb9cb3fc221245812fae07d1f2a5.zip |
Merge pull request #718 from karalabe/whisper-cleanup
Whisper cleanup, part 2
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/whisper.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xeth/whisper.go b/xeth/whisper.go index 51caec8d6..342910b5c 100644 --- a/xeth/whisper.go +++ b/xeth/whisper.go @@ -36,7 +36,7 @@ func (self *Whisper) Post(payload string, to, from string, topics []string, prio TTL: time.Duration(ttl) * time.Second, To: crypto.ToECDSAPub(common.FromHex(to)), From: key, - Topics: whisper.TopicsFromString(topics...), + Topics: whisper.NewTopicsFromStrings(topics...), }) if err != nil { @@ -71,7 +71,7 @@ func (self *Whisper) Watch(opts *Options) int { filter := whisper.Filter{ To: crypto.ToECDSAPub(common.FromHex(opts.To)), From: crypto.ToECDSAPub(common.FromHex(opts.From)), - Topics: whisper.TopicsFromString(opts.Topics...), + Topics: whisper.NewTopicsFromStrings(opts.Topics...), } var i int |