diff options
author | Thomas Schmidt <tomhschmidt@thomass-mbp-2.lan> | 2018-02-07 03:47:24 +0800 |
---|---|---|
committer | Thomas Schmidt <tomhschmidt@thomass-mbp-2.lan> | 2018-02-07 03:47:24 +0800 |
commit | 00bfc7f889fcf1527c77c7f88816f463843c4282 (patch) | |
tree | 8c292231cca0c168b4a662c29540df7411676703 /packages/website/ts/components/inputs | |
parent | 9d80a62bb18296c34824048b8ea2be5ad9b3515d (diff) | |
download | dexon-sol-tools-00bfc7f889fcf1527c77c7f88816f463843c4282.tar.gz dexon-sol-tools-00bfc7f889fcf1527c77c7f88816f463843c4282.tar.zst dexon-sol-tools-00bfc7f889fcf1527c77c7f88816f463843c4282.zip |
Added logging for order filling and order cancelling
Diffstat (limited to 'packages/website/ts/components/inputs')
-rw-r--r-- | packages/website/ts/components/inputs/allowance_toggle.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/components/inputs/allowance_toggle.tsx b/packages/website/ts/components/inputs/allowance_toggle.tsx index 0a42df71b..a737222ca 100644 --- a/packages/website/ts/components/inputs/allowance_toggle.tsx +++ b/packages/website/ts/components/inputs/allowance_toggle.tsx @@ -75,7 +75,7 @@ export class AllowanceToggle extends React.Component<AllowanceToggleProps, Allow newAllowanceAmountInBaseUnits = DEFAULT_ALLOWANCE_AMOUNT_IN_BASE_UNITS; } try { - await this.props.blockchain.setProxyAllowanceAsync(this.props.token, newAllowanceAmountInBaseUnits) + await this.props.blockchain.setProxyAllowanceAsync(this.props.token, newAllowanceAmountInBaseUnits); ReactGA.event({ category: 'Portal', action: 'Set Allowance Success', |