diff options
author | Guillaume Ballet <gballet@gmail.com> | 2017-10-06 22:04:21 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-10-06 22:04:21 +0800 |
commit | 7a045af05b93c323f63c7af41423ded701ce3890 (patch) | |
tree | fcdfe96a65717fd18f3813cd5100d4790a582c1d /whisper/whisperv5/api.go | |
parent | 36243c7ed8c53e9de92d21bbcf0378d7e1c7a07e (diff) | |
download | go-tangerine-7a045af05b93c323f63c7af41423ded701ce3890.tar go-tangerine-7a045af05b93c323f63c7af41423ded701ce3890.tar.gz go-tangerine-7a045af05b93c323f63c7af41423ded701ce3890.tar.bz2 go-tangerine-7a045af05b93c323f63c7af41423ded701ce3890.tar.lz go-tangerine-7a045af05b93c323f63c7af41423ded701ce3890.tar.xz go-tangerine-7a045af05b93c323f63c7af41423ded701ce3890.tar.zst go-tangerine-7a045af05b93c323f63c7af41423ded701ce3890.zip |
whisper/whisperv5: set filter SymKeyHash on creation (#15165)
Diffstat (limited to 'whisper/whisperv5/api.go')
-rw-r--r-- | whisper/whisperv5/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whisper/whisperv5/api.go b/whisper/whisperv5/api.go index ec22f0d1d..96c4b0e6c 100644 --- a/whisper/whisperv5/api.go +++ b/whisper/whisperv5/api.go @@ -104,7 +104,7 @@ func (api *PublicWhisperAPI) Info(ctx context.Context) Info { stats := api.w.Stats() return Info{ Memory: stats.memoryUsed, - Messages: len(api.w.messageQueue) + len(api.w.p2pMsgQueue), + Messages: len(api.w.messageQueue) + len(api.w.p2pMsgQueue), MinPow: api.w.MinPow(), MaxMessageSize: api.w.MaxMessageSize(), } |