1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

Fixing deactivateMint estimate gas cost

This commit is contained in:
Jamie Hewitt 2022-05-12 17:39:08 +03:00
parent b9e89bb335
commit 1de19f8e2b

View File

@ -810,7 +810,7 @@ export class FixedRateExchange {
let estGas
try {
estGas = await fixedRate.methods
.toggleMintState(exchangeId)
.toggleMintState(exchangeId, false)
.estimateGas({ from: account }, (err, estGas) => (err ? gasLimitDefault : estGas))
console.log('### estGas', estGas)
} catch (e) {
@ -834,7 +834,7 @@ export class FixedRateExchange {
if (!exchange) return null
if (exchange.withMint === false) return null
const estGas = await this.estDeactivate(address, exchangeId)
const estGas = await this.estDeactivateMint(address, exchangeId)
console.log('estGas', estGas)
const trxReceipt = await this.fixedRateContract.methods