diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-08-09 09:28:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-09 09:28:15 +0800 |
commit | 53713188fee57391040c24cc627fdc5ab8982d2e (patch) | |
tree | 8bfcf59197506af235f772cb8fc78f6315932c4f /packages/contract_templates/partials/callAsync.handlebars | |
parent | 03fb73d1d2017b41551f47552a5ca06f0dfb0f08 (diff) | |
parent | c4c37cafa0d8a77bfdc01b1cc111ba0101e86c8b (diff) | |
download | dexon-sol-tools-53713188fee57391040c24cc627fdc5ab8982d2e.tar dexon-sol-tools-53713188fee57391040c24cc627fdc5ab8982d2e.tar.gz dexon-sol-tools-53713188fee57391040c24cc627fdc5ab8982d2e.tar.bz2 dexon-sol-tools-53713188fee57391040c24cc627fdc5ab8982d2e.tar.lz dexon-sol-tools-53713188fee57391040c24cc627fdc5ab8982d2e.tar.xz dexon-sol-tools-53713188fee57391040c24cc627fdc5ab8982d2e.tar.zst dexon-sol-tools-53713188fee57391040c24cc627fdc5ab8982d2e.zip |
Merge pull request #915 from 0xProject/feature/encode-decode-checks
Add strictArgumentEncodingCheck to BaseContract and use it in contract templates
Diffstat (limited to 'packages/contract_templates/partials/callAsync.handlebars')
-rw-r--r-- | packages/contract_templates/partials/callAsync.handlebars | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/contract_templates/partials/callAsync.handlebars b/packages/contract_templates/partials/callAsync.handlebars index fcaae57c6..94752691d 100644 --- a/packages/contract_templates/partials/callAsync.handlebars +++ b/packages/contract_templates/partials/callAsync.handlebars @@ -7,6 +7,7 @@ async callAsync( const functionSignature = '{{this.functionSignature}}'; const inputAbi = self._lookupAbi(functionSignature).inputs; [{{> params inputs=inputs}}] = BaseContract._formatABIDataItemList(inputAbi, [{{> params inputs=inputs}}], BaseContract._bigNumberToString.bind(self)); + BaseContract.strictArgumentEncodingCheck(inputAbi, [{{> params inputs=inputs}}]); const ethersFunction = self._lookupEthersInterface(functionSignature).functions.{{this.name}}( {{> params inputs=inputs}} ) as ethers.CallDescription; |