From 8733ce74a0139298bef675f73f6d37580fda1fd2 Mon Sep 17 00:00:00 2001 From: Rodrigo Bonilla <134734899+rodribp@users.noreply.github.com> Date: Fri, 12 Jun 2026 02:57:54 -0600 Subject: [PATCH] typo Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- backend/src/api/chain-tips.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {