diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-02 23:40:06 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-02 23:40:06 +0800 |
commit | 7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e (patch) | |
tree | 9442911d21d05f12c537a2aa537cff223e653b27 /src | |
parent | f5158eebf335c9fbcfb7cfb6f32a0ecd1161391d (diff) | |
download | dexon-sol-tools-7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e.tar dexon-sol-tools-7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e.tar.gz dexon-sol-tools-7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e.tar.bz2 dexon-sol-tools-7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e.tar.lz dexon-sol-tools-7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e.tar.xz dexon-sol-tools-7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e.tar.zst dexon-sol-tools-7fd84e29ab8c27cb872cf8cd0f631d4b78abba0e.zip |
Rename EXPIRED to FILL_ORDER_EXPIRED
Diffstat (limited to 'src')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 2 | ||||
-rw-r--r-- | src/types.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 4c46404bb..e957530ae 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -133,7 +133,7 @@ export class ExchangeWrapper extends ContractWrapper { } const currentUnixTimestampSec = Date.now() / 1000; if (signedOrder.expirationUnixTimestampSec.lessThan(currentUnixTimestampSec)) { - throw new Error(FillOrderValidationErrs.EXPIRED); + throw new Error(FillOrderValidationErrs.FILL_ORDER_EXPIRED); } const zrxTokenAddress = await this.getZRXTokenAddressAsync(); await this.validateFillOrderBalancesAndAllowancesAndThrowIfInvalidAsync(signedOrder, fillTakerAmount, diff --git a/src/types.ts b/src/types.ts index 6e1499a7c..e4a7da5d7 100644 --- a/src/types.ts +++ b/src/types.ts @@ -95,7 +95,7 @@ export type ExchangeContractErrs = keyof typeof ExchangeContractErrs; export const FillOrderValidationErrs = strEnum([ 'FILL_AMOUNT_IS_ZERO', 'TRANSACTION_SENDER_IS_NOT_FILL_ORDER_TAKER', - 'EXPIRED', + 'FILL_ORDER_EXPIRED', 'NOT_ENOUGH_TAKER_BALANCE', 'NOT_ENOUGH_TAKER_ALLOWANCE', 'NOT_ENOUGH_MAKER_BALANCE', |