Parsing fixes
This commit is contained in:
parent
f80b5526e8
commit
c254ebed2d
|
@ -60,10 +60,12 @@ const BlockTransactions: React.FC = () => {
|
||||||
from: t.from,
|
from: t.from,
|
||||||
to: t.to,
|
to: t.to,
|
||||||
value: t.value,
|
value: t.value,
|
||||||
fee: t.gasLimit.mul(t.gasPrice!),
|
fee: provider.formatter
|
||||||
|
.bigNumber(_receipts[i].gasUsed)
|
||||||
|
.mul(t.gasPrice!),
|
||||||
gasPrice: t.gasPrice!,
|
gasPrice: t.gasPrice!,
|
||||||
data: t.data,
|
data: t.data,
|
||||||
status: _receipts[i].status,
|
status: provider.formatter.number(_receipts[i].status),
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
.reverse()
|
.reverse()
|
||||||
|
|
Loading…
Reference in New Issue