pull/5370/head
Liana Husikyan 3 years ago committed by Aniket
parent ce8947a4c1
commit 88e89c0a63
  1. 3
      libs/remix-ui/debugger-ui/src/lib/vm-debugger/global-variables.tsx

@ -16,8 +16,9 @@ export const GlobalVariables = ({ block, receipt, tx }) => {
'msg.value': tx.value + ' Wei',
'tx.origin': tx.from
}
if (block.baseFeePerGas)
if (block.baseFeePerGas) {
globals['block.basefee'] = (new BN(block.baseFeePerGas.replace('0x', ''), 'hex')).toString(10) + ` Wei (${block.baseFeePerGas})`
)
return (
<div id='globalvariable' data-id='globalvariable'>

Loading…
Cancel
Save