From 8c5939252607f74b60a49fee4570734ffa06b11c Mon Sep 17 00:00:00 2001 From: Bulat-Ziganshin Date: Thu, 8 Sep 2022 12:27:54 +0300 Subject: [PATCH] FSStore instead of SQLiteStore --- codex/codex.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex/codex.nim b/codex/codex.nim index 282c5e0f..4c29839f 100644 --- a/codex/codex.nim +++ b/codex/codex.nim @@ -141,7 +141,7 @@ proc new*(T: type CodexServer, config: CodexConf): T = msg: "Unable to create data directory for block store: " & repoDir) let - localStore = SQLiteStore.new(repoDir, cache = cache) + localStore = FSStore.new(repoDir, cache = cache) peerStore = PeerCtxStore.new() pendingBlocks = PendingBlocksManager.new() discovery = DiscoveryEngine.new(localStore, peerStore, network, blockDiscovery, pendingBlocks)