Skip to content

Commit 6c99904

Browse files
committed
fix for injected web3 call
1 parent 0781f6a commit 6c99904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class TxRunnerWeb3 {
7474
if (useCall) {
7575
const tag = Date.now() // for e2e reference
7676
tx['gas'] = gasLimit
77-
tx['timestamp'] = timestamp
77+
// tx['timestamp'] = timestamp
7878
return this.getWeb3().eth.call(tx, function (error, result: any) {
7979
if (error) return callback(error)
8080
callback(null, {

0 commit comments

Comments
 (0)