mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-10 14:56:31 +00:00
15 lines
392 B
Nim
15 lines
392 B
Nim
## Contains types and utilities for pagination.
|
|
##
|
|
## Used by both message store and store protocol.
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
import nimcrypto/hash
|
|
|
|
type
|
|
Index* = object
|
|
## This type contains the description of an Index used in the pagination of WakuMessages
|
|
digest*: MDigest[256]
|
|
receiverTime*: float64
|
|
senderTime*: float64 # the time at which the message is generated
|