Commit 6c99904f authored by aniket-engg's avatar aniket-engg Committed by Aniket

fix for injected web3 call

parent 0781f6aa
...@@ -74,7 +74,7 @@ export class TxRunnerWeb3 { ...@@ -74,7 +74,7 @@ export class TxRunnerWeb3 {
if (useCall) { if (useCall) {
const tag = Date.now() // for e2e reference const tag = Date.now() // for e2e reference
tx['gas'] = gasLimit tx['gas'] = gasLimit
tx['timestamp'] = timestamp // tx['timestamp'] = timestamp
return this.getWeb3().eth.call(tx, function (error, result: any) { return this.getWeb3().eth.call(tx, function (error, result: any) {
if (error) return callback(error) if (error) return callback(error)
callback(null, { callback(null, {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment