diff --git a/routes/baseActionsRouter.js b/routes/baseActionsRouter.js index 2a5b62b..934d4a6 100644 --- a/routes/baseActionsRouter.js +++ b/routes/baseActionsRouter.js @@ -357,7 +357,7 @@ router.get("/block-height/:blockHeight", function(req, res) { res.locals.result.transactions = result.transactions; res.locals.result.txInputsByTransaction = result.txInputsByTransaction; - res.render("block-height"); + res.render("block"); }); }); }); diff --git a/views/block-height.pug b/views/block-height.pug deleted file mode 100644 index 729c6bf..0000000 --- a/views/block-height.pug +++ /dev/null @@ -1,13 +0,0 @@ -extends layout - -block headContent - title Block #{blockHeight} - -block content - h1(class="h2") Block - small(class="monospace") ##{blockHeight.toLocaleString()} - br - small(style="width: 100%;", class="monospace word-wrap") #{result.getblock.hash} - hr - - include includes/block-content.pug \ No newline at end of file