aboutsummaryrefslogtreecommitdiffstats
path: root/src/contract_wrappers
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-06-01 22:25:28 +0800
committerFabio Berger <me@fabioberger.com>2017-06-01 22:25:28 +0800
commit6c590354c7536ae3ed941fb757be9d0240739e14 (patch)
treefaae7ee3365745169bedd66f5ed9f4335575da5b /src/contract_wrappers
parentabd113f61f67b08b9a232a89832b1db4318dac9e (diff)
downloaddexon-sol-tools-6c590354c7536ae3ed941fb757be9d0240739e14.tar
dexon-sol-tools-6c590354c7536ae3ed941fb757be9d0240739e14.tar.gz
dexon-sol-tools-6c590354c7536ae3ed941fb757be9d0240739e14.tar.bz2
dexon-sol-tools-6c590354c7536ae3ed941fb757be9d0240739e14.tar.lz
dexon-sol-tools-6c590354c7536ae3ed941fb757be9d0240739e14.tar.xz
dexon-sol-tools-6c590354c7536ae3ed941fb757be9d0240739e14.tar.zst
dexon-sol-tools-6c590354c7536ae3ed941fb757be9d0240739e14.zip
improve comment
Diffstat (limited to 'src/contract_wrappers')
-rw-r--r--src/contract_wrappers/exchange_wrapper.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts
index ded0d3519..96bb4c0a0 100644
--- a/src/contract_wrappers/exchange_wrapper.ts
+++ b/src/contract_wrappers/exchange_wrapper.ts
@@ -58,9 +58,9 @@ export class ExchangeWrapper extends ContractWrapper {
return isValidSignature;
}
/**
- * Fills a signed order with a specified amount in baseUnits of the taker token. The caller can
+ * Fills a signed order with a fillAmount denominated in baseUnits of the taker token. The caller can
* decide whether they want the call to throw if the balance/allowance checks fail by setting
- * shouldCheckTransfer to false. If true, the call will fail without throwing, preserving gas costs.
+ * shouldCheckTransfer to false. If set to true, the call will fail without throwing, preserving gas costs.
*/
public async fillOrderAsync(signedOrder: SignedOrder, fillTakerAmountInBaseUnits: BigNumber.BigNumber,
shouldCheckTransfer: boolean): Promise<void> {