Merge pull request #1405 from ethereum/sendRawTransaction

added sendRawTransaction
pull/7/head
yann300 5 years ago committed by GitHub
commit 30d61a1ab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      remix-lib/src/universalDapp.js

@ -241,6 +241,20 @@ module.exports = class UniversalDApp {
})
}
/**
* call the current given contract
*
* @param {String} to - address of the contract to call.
* @param {String} data - data to send with the transaction ( return of txFormat.buildData(...) ).
* @param {Function} callback - callback.
*/
sendRawTransaction (to, data, confirmationCb, continueCb, promptCb, callback) {
this.runTx({to, data, useCall: false}, confirmationCb, continueCb, promptCb, (error, txResult) => {
// see universaldapp.js line 660 => 700 to check possible values of txResult (error case)
callback(error, txResult)
})
}
context () {
return (this.executionContext.isVM() ? 'memory' : 'blockchain')
}

Loading…
Cancel
Save