mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-15 12:23:15 +00:00
git-subtree-dir: third-party/nwaku git-subtree-split: d94cb7c73631ffd4b934839ba58bc622d331a135
10 lines
304 B
Nim
10 lines
304 B
Nim
import std/options, results
|
|
|
|
import
|
|
waku/node/peer_manager/[waku_peer_store, peer_store/waku_peer_storage],
|
|
../../../waku_archive/archive_utils
|
|
|
|
proc newTestWakuPeerStorage*(path: Option[string] = string.none()): WakuPeerStorage =
|
|
let db = newSqliteDatabase(path)
|
|
WakuPeerStorage.new(db).value()
|