From: Chris Duncan Date: Tue, 4 Aug 2026 23:08:40 +0000 (-0700) Subject: Fix Ledger frontier caching. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=de2fc331436e5f43c556ce7d6e42bab5984c7b5b;p=libnemo.git Fix Ledger frontier caching. --- diff --git a/src/lib/ledger/index.ts b/src/lib/ledger/index.ts index 032af12..508ebad 100644 --- a/src/lib/ledger/index.ts +++ b/src/lib/ledger/index.ts @@ -243,7 +243,7 @@ export class Ledger { } const contents = {} as Record for (const [k, v] of Object.entries(blockInfo.contents)) { - if (Schema.block_info.fields.includes(k)) { + if (Schema.block_info.contents.fields.includes(k)) { contents[k] = v } }