Update universalDapp.js

pull/7/head
Liana Husikyan 5 years ago committed by GitHub
parent a40b7cecb8
commit 15b06fc753
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      remix-lib/src/universalDapp.js

@ -248,8 +248,8 @@ module.exports = class UniversalDApp {
* @param {String} data - data to send with the transaction ( return of txFormat.buildData(...) ).
* @param {Function} callback - callback.
*/
callFunction (to, data, confirmationCb, continueCb, promptCb, callback) {
this.runTx({to, data, useCall: null}, confirmationCb, continueCb, promptCb, (error, txResult) => {
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)
})

Loading…
Cancel
Save