mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-04 06:53:12 +00:00
15 lines
310 B
Nim
15 lines
310 B
Nim
when (NimMajor, NimMinor) < (1, 4):
|
|
{.push raises: [Defect].}
|
|
else:
|
|
{.push raises: [].}
|
|
|
|
|
|
import
|
|
../../../waku_core,
|
|
../../../utils/time,
|
|
../../common
|
|
|
|
type DbCursor* = (Timestamp, seq[byte], PubsubTopic)
|
|
|
|
proc toDbCursor*(c: ArchiveCursor): DbCursor = (c.storeTime, @(c.digest.data), c.pubsubTopic)
|