diff --git a/templates/_blockslist.html b/templates/_blockslist.html index a50e110..ba30ea4 100644 --- a/templates/_blockslist.html +++ b/templates/_blockslist.html @@ -3,7 +3,7 @@ Slot # Block content (log scale) - Tx success/processed/banking stage + Tx processed/error/banking stage @@ -37,9 +37,23 @@
- proc:{{ block.processed_transactions }} - fail:{{ block.txerrors }} - bank:{{ block.banking_stage_errors }} + + proc:{{ block.processed_transactions }} + + + {% if block.txerrors > 0 %} + fail:{{ block.txerrors }} + {% else %} + fail:0 + {% endif %} + + + {% if block.banking_stage_errors > 0 %} + bank:{{ block.banking_stage_errors }} + {% else %} + bank:0 + {% endif %} +