mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-02-07 15:13:08 +00:00
18 lines
434 B
Nim
18 lines
434 B
Nim
import std/bitops
|
|
import std/sugar
|
|
|
|
import pkg/chronos
|
|
import pkg/libp2p
|
|
import pkg/questionable
|
|
import pkg/questionable/results
|
|
|
|
import ../contracts/requests
|
|
import ../stores/blockstore
|
|
|
|
proc getTreeCidForSlot*(slot: Slot, blockstore: BlockStore): Future[?!Cid] {.async.} =
|
|
raiseAssert("a")
|
|
|
|
proc getSlotBlock*(slot: Slot, blockstore: BlockStore, treeCid: Cid, slotBlockIndex: int): Future[?!Block] {.async.} =
|
|
raiseAssert("a")
|
|
|