add basefee for estimate gas

pull/3262/head^2
yann300 2 years ago committed by Aniket
parent 63f65ebccb
commit e4a72469a9
  1. 2
      libs/remix-simulator/src/methods/transactions.ts

@ -171,7 +171,7 @@ export class Transactions {
if (result.execResult.gasRefund) {
gasUsed += result.execResult.gasRefund
}
cb(null, Math.ceil(Number(gasUsed) + (30 * Number(gasUsed)) / 100))
cb(null, Math.ceil(Number(gasUsed) + (15 * Number(gasUsed)) / 100) + Number(value.tx.getBaseFee()))
})
}

Loading…
Cancel
Save