We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bf8a96 commit a1c574dCopy full SHA for a1c574d
libs/remix-lib/src/execution/txRunnerWeb3.ts
@@ -81,7 +81,7 @@ export class TxRunnerWeb3 {
81
)
82
} else {
83
try {
84
- const res = await this.getWeb3().eth.sendTransaction(tx)
+ const res = await this.getWeb3().eth.sendTransaction(tx, null, { checkRevertBeforeSending: false })
85
cb(null, res.transactionHash)
86
} catch (e) {
87
console.log(`Send transaction failed: ${e.message} . if you use an injected provider, please check it is properly unlocked. `)
0 commit comments