diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-04-21 23:31:08 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-04-28 15:49:04 +0800 |
commit | ae4bfc3cfb3f1debad9dd0211950ce09038ffa90 (patch) | |
tree | d09f6c0291eab1b02cc1145b816542024e7c4bfa /xeth/xeth.go | |
parent | 15586368e52f49a0f7ea28f890af49d196760846 (diff) | |
download | dexon-ae4bfc3cfb3f1debad9dd0211950ce09038ffa90.tar dexon-ae4bfc3cfb3f1debad9dd0211950ce09038ffa90.tar.gz dexon-ae4bfc3cfb3f1debad9dd0211950ce09038ffa90.tar.bz2 dexon-ae4bfc3cfb3f1debad9dd0211950ce09038ffa90.tar.lz dexon-ae4bfc3cfb3f1debad9dd0211950ce09038ffa90.tar.xz dexon-ae4bfc3cfb3f1debad9dd0211950ce09038ffa90.tar.zst dexon-ae4bfc3cfb3f1debad9dd0211950ce09038ffa90.zip |
rpc, ui/qt/qwhisper, whisper, xeth: introduce complex topic filters
Diffstat (limited to 'xeth/xeth.go')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index 8cc32c958..ea6ae9950 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -452,7 +452,7 @@ func (self *XEth) AllLogs(earliest, latest int64, skip, max int, address []strin return filter.Find() } -func (p *XEth) NewWhisperFilter(to, from string, topics []string) int { +func (p *XEth) NewWhisperFilter(to, from string, topics [][]string) int { var id int callback := func(msg WhisperMessage) { p.messagesMut.Lock() |