2021-01-06 09:35:05 +00:00
|
|
|
## Contains types and utilities for pagination.
|
|
|
|
##
|
|
|
|
## Used by both message store and store protocol.
|
|
|
|
|
2021-07-22 08:43:41 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2021-01-06 09:35:05 +00:00
|
|
|
import nimcrypto/hash
|
|
|
|
|
|
|
|
type
|
|
|
|
Index* = object
|
|
|
|
## This type contains the description of an Index used in the pagination of WakuMessages
|
|
|
|
digest*: MDigest[256]
|
2021-07-07 23:56:20 +00:00
|
|
|
receiverTime*: float64
|
|
|
|
senderTime*: float64 # the time at which the message is generated
|