diff options
author | Fabio Berger <me@fabioberger.com> | 2017-06-20 08:38:08 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-06-20 08:38:08 +0800 |
commit | dc7c2082df5badc2bcddaa437815e62f6e599ed3 (patch) | |
tree | 87743acd1c43d4f1efafc9f58461a1f578796c5f | |
parent | 06dc1adb4a0280a84525651d46269801f57d22b3 (diff) | |
download | dexon-sol-tools-dc7c2082df5badc2bcddaa437815e62f6e599ed3.tar dexon-sol-tools-dc7c2082df5badc2bcddaa437815e62f6e599ed3.tar.gz dexon-sol-tools-dc7c2082df5badc2bcddaa437815e62f6e599ed3.tar.bz2 dexon-sol-tools-dc7c2082df5badc2bcddaa437815e62f6e599ed3.tar.lz dexon-sol-tools-dc7c2082df5badc2bcddaa437815e62f6e599ed3.tar.xz dexon-sol-tools-dc7c2082df5badc2bcddaa437815e62f6e599ed3.tar.zst dexon-sol-tools-dc7c2082df5badc2bcddaa437815e62f6e599ed3.zip |
Improve comment
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 6b8ffd014..9cbe8d874 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -131,9 +131,9 @@ export class ExchangeWrapper extends ContractWrapper { * Fills a signed order with an amount denominated in baseUnits of the taker token. * Since the order in which transactions are included in the next block is indeterminate, race-conditions * could arise where a users balance or allowance changes before the fillOrder executes. Because of this, - * we allow you to specify `shouldCheckTransfer`. If true, the smart contract will not throw if while - * executing, the parties do not have sufficient balances/allowances, preserving gas costs. Setting it to - * false forgoes this check and causes the smart contract to throw (using all the gas supplied) instead. + * we allow you to specify `shouldCheckTransfer`. If true, the smart contract will not throw if the parties + * do not have sufficient balances/allowances, preserving gas costs. Setting it to false forgoes this check + * and causes the smart contract to throw (using all the gas supplied) instead. * @param signedOrder An object that conforms to the SignedOrder interface. * @param takerTokenFillAmount The amount of the order (in taker tokens baseUnits) that you wish to fill. * @param shouldCheckTransfer Whether or not you wish for the contract call to throw if upon |