diff --git a/src/blockchain/universalDapp.js b/src/blockchain/universalDapp.js index 370dedbb54..99477a3649 100644 --- a/src/blockchain/universalDapp.js +++ b/src/blockchain/universalDapp.js @@ -8,6 +8,7 @@ const remixLib = require('remix-lib') const TxRunner = remixLib.execution.txRunner const txHelper = remixLib.execution.txHelper const EventManager = remixLib.EventManager +const Web3 = require('web3') const { resultToRemixTx } = require('./txResultHelper') @@ -205,7 +206,8 @@ class UniversalDApp { if (error) { callback(error) } else { - callback(null, this.executionContext.web3().fromWei(balance, 'ether')) + // callback(null, this.executionContext.web3().fromWei(balance, 'ether')) + callback(null, Web3.utils.fromWei(balance.toString(10), 'ether')) } }) }