remove execution tx-helper from UI

pull/1/head
Iuri Matias 7 years ago
parent ca831ee69b
commit 1f16aee752
  1. 6
      src/universal-dapp.js

@ -186,15 +186,15 @@ UniversalDApp.prototype.context = function () {
return (executionContext.isVM() ? 'memory' : 'blockchain')
}
UniversalDApp.prototype.getABI = function (contract) {
UniversalDAppModel.prototype.getABI = function (contract) {
return txHelper.sortAbiFunction(contract.abi)
}
UniversalDApp.prototype.getFallbackInterface = function (contractABI) {
UniversalDAppModel.prototype.getFallbackInterface = function (contractABI) {
return txHelper.getFallbackInterface(contractABI)
}
UniversalDApp.prototype.getInputs = function (funABI) {
UniversalDAppModel.prototype.getInputs = function (funABI) {
if (!funABI.inputs) {
return ''
}

Loading…
Cancel
Save