Commit 1f16aee7 authored by Iuri Matias's avatar Iuri Matias

remove execution tx-helper from UI

parent ca831ee6
...@@ -186,15 +186,15 @@ UniversalDApp.prototype.context = function () { ...@@ -186,15 +186,15 @@ UniversalDApp.prototype.context = function () {
return (executionContext.isVM() ? 'memory' : 'blockchain') return (executionContext.isVM() ? 'memory' : 'blockchain')
} }
UniversalDApp.prototype.getABI = function (contract) { UniversalDAppModel.prototype.getABI = function (contract) {
return txHelper.sortAbiFunction(contract.abi) return txHelper.sortAbiFunction(contract.abi)
} }
UniversalDApp.prototype.getFallbackInterface = function (contractABI) { UniversalDAppModel.prototype.getFallbackInterface = function (contractABI) {
return txHelper.getFallbackInterface(contractABI) return txHelper.getFallbackInterface(contractABI)
} }
UniversalDApp.prototype.getInputs = function (funABI) { UniversalDAppModel.prototype.getInputs = function (funABI) {
if (!funABI.inputs) { if (!funABI.inputs) {
return '' return ''
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment