diff options
-rw-r--r-- | whisper/whisperv5/api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/whisper/whisperv5/api.go b/whisper/whisperv5/api.go index f3d25f781..5b84b99eb 100644 --- a/whisper/whisperv5/api.go +++ b/whisper/whisperv5/api.go @@ -94,7 +94,7 @@ func (api *PublicWhisperAPI) Version(ctx context.Context) string { // Info contains diagnostic information. type Info struct { Memory int `json:"memory"` // Memory size of the floating messages in bytes. - Message int `json:"message"` // Number of floating messages. + Messages int `json:"messages"` // Number of floating messages. MinPow float64 `json:"minPow"` // Minimal accepted PoW MaxMessageSize uint32 `json:"maxMessageSize"` // Maximum accepted message size } @@ -104,7 +104,7 @@ func (api *PublicWhisperAPI) Info(ctx context.Context) Info { stats := api.w.Stats() return Info{ Memory: stats.memoryUsed, - Message: 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(), } |