aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-04-22 17:50:48 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-04-28 15:49:04 +0800
commitdb615a85ec000dab7f73a6d4b1b46428ba4acdee (patch)
tree0ffc36dae8454fcbdcde7fa0d1e616365e87ad29 /xeth
parentae4bfc3cfb3f1debad9dd0211950ce09038ffa90 (diff)
downloaddexon-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar
dexon-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.gz
dexon-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.bz2
dexon-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.lz
dexon-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.xz
dexon-db615a85ec000dab7f73a6d4b1b46428ba4acdee.tar.zst
dexon-db615a85ec000dab7f73a6d4b1b46428ba4acdee.zip
ui/qt/qwhisper, whisper, xeth: polish topic filter, fix wildcards
Diffstat (limited to 'xeth')
-rw-r--r--xeth/whisper.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/whisper.go b/xeth/whisper.go
index 25c4af3b1..36c6ca63f 100644
--- a/xeth/whisper.go
+++ b/xeth/whisper.go
@@ -71,7 +71,7 @@ func (self *Whisper) Watch(to, from string, topics [][]string, fn func(WhisperMe
filter := whisper.Filter{
To: crypto.ToECDSAPub(common.FromHex(to)),
From: crypto.ToECDSAPub(common.FromHex(from)),
- Topics: whisper.NewTopicFilterFromStrings(topics...),
+ Topics: whisper.NewFilterTopicsFromStrings(topics...),
}
filter.Fn = func(message *whisper.Message) {
fn(NewWhisperMessage(message))