Skip to content

Commit 9b3e86d

Browse files
committed
linting fix
1 parent 628bb92 commit 9b3e86d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libs/remix-lib/src/execution/txRunnerWeb3.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ export class TxRunnerWeb3 {
7373

7474
if (useCall) {
7575
tx['gas'] = gasLimit
76-
if(this._api && this._api.isVM()) tx['timestamp'] = timestamp
77-
return this.getWeb3().eth.call(tx, function (error, result: any) {
78-
if (error) return callback(error)
79-
callback(null, {
80-
result: result
81-
})
76+
if (this._api && this._api.isVM()) tx['timestamp'] = timestamp
77+
return this.getWeb3().eth.call(tx, function (error, result: any) {
78+
if (error) return callback(error)
79+
callback(null, {
80+
result: result
8281
})
82+
})
8383
}
8484
this.getWeb3().eth.estimateGas(tx, (err, gasEstimation) => {
8585
if (err && err.message.indexOf('Invalid JSON RPC response') !== -1) {

0 commit comments

Comments
 (0)