Merge pull request #728 from freeslugs/fix-spelling

fix spelling on txExecution.js
pull/7/head
yann300 7 years ago committed by GitHub
commit dbc573f767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      remix-lib/src/execution/txExecution.js

@ -5,7 +5,7 @@ module.exports = {
* deploy the given contract * deploy the given contract
* *
* @param {String} data - data to send with the transaction ( return of txFormat.buildData(...) ). * @param {String} data - data to send with the transaction ( return of txFormat.buildData(...) ).
* @param {Object} udap - udapp. * @param {Object} udapp - udapp.
* @param {Function} callback - callback. * @param {Function} callback - callback.
*/ */
createContract: function (data, udapp, callback) { createContract: function (data, udapp, callback) {
@ -21,7 +21,7 @@ module.exports = {
* @param {String} to - address of the contract to call. * @param {String} to - address of the contract to call.
* @param {String} data - data to send with the transaction ( return of txFormat.buildData(...) ). * @param {String} data - data to send with the transaction ( return of txFormat.buildData(...) ).
* @param {Object} funAbi - abi definition of the function to call. * @param {Object} funAbi - abi definition of the function to call.
* @param {Object} udap - udapp. * @param {Object} udapp - udapp.
* @param {Function} callback - callback. * @param {Function} callback - callback.
*/ */
callFunction: function (to, data, funAbi, udapp, callback) { callFunction: function (to, data, funAbi, udapp, callback) {

Loading…
Cancel
Save