2023-03-13 18:18:30 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2023 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
2023-06-04 06:00:50 +00:00
|
|
|
eth/[p2p],
|
2023-03-13 18:18:30 +00:00
|
|
|
chronicles,
|
2023-06-04 06:00:50 +00:00
|
|
|
stew/[interval_set],
|
|
|
|
"."/[sync_desc]
|
2023-03-13 18:18:30 +00:00
|
|
|
|
|
|
|
logScope:
|
|
|
|
topics = "stateless-sync"
|
|
|
|
|
|
|
|
type
|
|
|
|
StatelessSyncRef* = ref object
|
|
|
|
# FIXME-Adam: what needs to go in here?
|
|
|
|
|
2023-06-04 06:00:50 +00:00
|
|
|
|
2023-03-13 18:18:30 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc init*(T: type StatelessSyncRef): T =
|
|
|
|
new result
|
|
|
|
|
|
|
|
|
|
|
|
proc start*(ctx: StatelessSyncRef) =
|
|
|
|
# FIXME-Adam: What do I need here, if anything?
|
|
|
|
discard
|
|
|
|
|
|
|
|
proc stop*(ctx: StatelessSyncRef) =
|
|
|
|
discard
|