We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83d98a0 + 5f85b1b commit e9a97e2Copy full SHA for e9a97e2
client/pages/blocks/index.vue
@@ -51,16 +51,8 @@
51
</template>
52
53
<template
54
- slot="gasUsed"
55
- slot-scope="props">
56
- <p><span>{{ formatNumber(props.item.gasUsed) }}</span>
57
- <small>({{ (100 * props.item.gasUsed / props.item.gasLimit).toFixed(2) }} %)</small>
58
- </p>
59
- </template>
60
-
61
- <template
62
- slot="gasLimit"
63
- slot-scope="props">{{ formatNumber(props.item.gasLimit) }}</template>
+ slot="finality"
+ slot-scope="props">{{ formatNumber(props.item.finality) }}</template>
64
</table-base>
65
66
<b-pagination-nav
@@ -99,7 +91,7 @@ export default {
99
91
e_tx: { label: 'txn' },
100
92
miner: { label: 'Miner' },
101
93
gasUsed: { label: 'GasUsed' },
102
- gasLimit: { label: 'GasLimit' }
94
+ finality: { label: 'Finality' }
103
95
},
104
96
loading: true,
105
97
pagination: {},
0 commit comments