diff --git a/index.html b/index.html index 394050d..78d910c 100644 --- a/index.html +++ b/index.html @@ -408,7 +408,7 @@ router.addRoute('block', async state => { const [blockId] = state.wildcards if (!blockId) return; - let [blockInfo, blockTxs] = await Promise.all([getBlockInfo(blockId), getBlockTxs(blockId)]) + let [blockInfo, blockTxs] = await Promise.all([getBlockInfo(blockId), getBlockTransactions(blockId)]) renderElem(getRef("page_container"), html`${render.blockPage(blockInfo)}`); getRef("page_title").textContent = 'Block' renderTransactions('block_transaction_container', blockTxs) @@ -879,7 +879,17 @@