diff --git a/src/components/MicroblockDetailsPanel.vue b/src/components/MicroblockDetailsPanel.vue index ea833cb95..fe81aadd2 100644 --- a/src/components/MicroblockDetailsPanel.vue +++ b/src/components/MicroblockDetailsPanel.vue @@ -75,6 +75,17 @@ {{ formatNumber(microblockDetails.transactionsCount) }} + + + + {{ microblocksHints.gas }} + + Gas Limit + + + {{ microblockDetails.gas }} + + diff --git a/src/utils/hints/microblocksHints.js b/src/utils/hints/microblocksHints.js index ea9cbfff7..6755754c3 100644 --- a/src/utils/hints/microblocksHints.js +++ b/src/utils/hints/microblocksHints.js @@ -10,4 +10,5 @@ export const microblocksHints = { transactionTime: 'Keyblock height and exact date and time when the transaction was executed by inclusion into a microblock.', transactionType: 'The type of the transaction depends on its purpose in the æternity ecosystem.', transactionData: 'The data displayed differs for each tx type.', + gas: 'Used gas from all transactions in the microblock.', }