mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-07-22 12:39:30 +00:00
* change all usage of std.options.Option[T] to results.Opt[T] * fix broken apps and examples (to validate refactor) * removed all std/options code added for libp2p v2 migration * add broker Opt codec to persistency/backend_comm.nim * add a readValue overload for Opt[T] in tools/confutils/cli_args.nim * keep Option where required (Presto, confutils' config_file.nim) * Change generateRlnProof error handling * Fix imports
33 lines
964 B
Nim
33 lines
964 B
Nim
{.used.}
|
|
|
|
import results, chronos, chronicles, libp2p/crypto/crypto
|
|
|
|
logScope:
|
|
topics = "test waku_lightpush_legacy"
|
|
|
|
import
|
|
logos_delivery/waku/node/peer_manager,
|
|
logos_delivery/waku/waku_lightpush_legacy,
|
|
logos_delivery/waku/waku_lightpush_legacy/[client, common],
|
|
logos_delivery/waku/common/rate_limit/setting,
|
|
../testlib/[common, wakucore]
|
|
|
|
proc newTestWakuLegacyLightpushNode*(
|
|
switch: Switch,
|
|
handler: PushMessageHandler,
|
|
rateLimitSetting: Opt[RateLimitSetting] = Opt.none(RateLimitSetting),
|
|
): Future[WakuLegacyLightPush] {.async.} =
|
|
let
|
|
peerManager = PeerManager.new(switch)
|
|
proto =
|
|
WakuLegacyLightPush.new(peerManager, crypto.newRng(), handler, rateLimitSetting)
|
|
|
|
await proto.start()
|
|
switch.mount(proto)
|
|
|
|
return proto
|
|
|
|
proc newTestWakuLegacyLightpushClient*(switch: Switch): WakuLegacyLightPushClient =
|
|
let peerManager = PeerManager.new(switch)
|
|
WakuLegacyLightPushClient.new(peerManager, crypto.newRng())
|