From dd78272a5e3183e02f847254b8fca97c2c546885 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sat, 2 Dec 2023 13:43:40 -0800 Subject: [PATCH] Ndb: update to use new nostrdb config struct --- nostrdb/Ndb.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nostrdb/Ndb.swift b/nostrdb/Ndb.swift index 8604bccb..c612bc58 100644 --- a/nostrdb/Ndb.swift +++ b/nostrdb/Ndb.swift @@ -67,7 +67,8 @@ class Ndb { let ok = path.withCString { testdir in var ok = false while !ok && mapsize > 1024 * 1024 * 700 { - ok = ndb_init(&ndb_p, testdir, mapsize, ingest_threads, 0) != 0 + var cfg = ndb_config(flags: 0, ingester_threads: ingest_threads, mapsize: mapsize, filter_context: nil, ingest_filter: nil) + ok = ndb_init(&ndb_p, testdir, &cfg) != 0 if !ok { mapsize /= 2 }