nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

commit e36fdb233a5dc891b1bda86babcf596b83efc93d
parent 5a059bcdba12a03cab91cfc5652e034b1756173f
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 11 Aug 2023 19:21:13 -0700

note: add a reserved area for future expansion

Diffstat:
Mnostrdb.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nostrdb.h b/nostrdb.h @@ -116,7 +116,7 @@ struct ndb_note { uint32_t content_length; union ndb_packed_str content; uint32_t strings; - + uint32_t reserved[4]; // expansion slots // nothing can come after tags since it contains variadic data struct ndb_tags tags; };