diff --git a/.changeset/forty-candles-perform.md b/.changeset/forty-candles-perform.md new file mode 100644 index 000000000..6a92e68b9 --- /dev/null +++ b/.changeset/forty-candles-perform.md @@ -0,0 +1,5 @@ +--- +'explorer': minor +--- + +Corrected transaction confirmation count. diff --git a/apps/explorer/app/tx/[id]/page.tsx b/apps/explorer/app/tx/[id]/page.tsx index c69c45f57..f7b35b21f 100644 --- a/apps/explorer/app/tx/[id]/page.tsx +++ b/apps/explorer/app/tx/[id]/page.tsx @@ -54,7 +54,8 @@ export default async function Page({ params }) { transactionHeaderData={{ id: stripPrefix(transaction.id), blockHeight: transactionChainIndices[0].height, - confirmations: currentTip.height - transactionChainIndices[0].height, + confirmations: + currentTip.height - transactionChainIndices[0].height + 1, timestamp: parentBlock.timestamp, }} />