diff --git a/backend/src/api/chain-tips.ts b/backend/src/api/chain-tips.ts index cb9fce2b4..096bda142 100644 --- a/backend/src/api/chain-tips.ts +++ b/backend/src/api/chain-tips.ts @@ -223,7 +223,7 @@ class ChainTips { const staleBlocks = await BlocksRepository.$getStaleBlocks(fromHeight, limit); - // map the previous block hashes of each stale block so we can reconstrunct branch lengths + // map the previous block hashes of each stale block so we can reconstruct branch lengths const staleByPrevhash: { [prevhash: string]: BlockExtended } = {}; for (const block of staleBlocks) { if (block.previousblockhash) {