aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/contract_templates/partials/call.mustache
diff options
context:
space:
mode:
Diffstat (limited to 'packages/0x.js/contract_templates/partials/call.mustache')
-rw-r--r--packages/0x.js/contract_templates/partials/call.mustache4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/contract_templates/partials/call.mustache b/packages/0x.js/contract_templates/partials/call.mustache
index ef4bda724..0475136f0 100644
--- a/packages/0x.js/contract_templates/partials/call.mustache
+++ b/packages/0x.js/contract_templates/partials/call.mustache
@@ -5,8 +5,8 @@ public {{this.name}} = {
): Promise<{{> return_type outputs=outputs}}> {
const self = this as {{contractName}}Contract;
const result = await promisify<{{> return_type outputs=outputs}}>(
- self.web3ContractInstance.{{this.name}}.call,
- self.web3ContractInstance,
+ self._web3ContractInstance.{{this.name}}.call,
+ self._web3ContractInstance,
)(
{{> params inputs=inputs}}
);