From 1f16aee752b3bf1173a0b094fdaddb578eec1a2a Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 6 Feb 2018 13:17:39 -0500 Subject: [PATCH] remove execution tx-helper from UI --- src/universal-dapp.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/universal-dapp.js b/src/universal-dapp.js index 2e63574e27..5aadae9bda 100644 --- a/src/universal-dapp.js +++ b/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 '' }