mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +00:00
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()
|