diff options
author | Jacob Evans <jacob@dekz.net> | 2017-11-14 01:54:31 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2017-11-14 05:35:37 +0800 |
commit | b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5 (patch) | |
tree | 9b8a6b8a0b7748f7053ad7afcf0ac53cb5a24320 /packages/0x.js/src/stores | |
parent | c088d9ddd95d1c10025bee75a91a65f8479db277 (diff) | |
download | dexon-sol-tools-b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5.tar dexon-sol-tools-b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5.tar.gz dexon-sol-tools-b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5.tar.bz2 dexon-sol-tools-b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5.tar.lz dexon-sol-tools-b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5.tar.xz dexon-sol-tools-b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5.tar.zst dexon-sol-tools-b1b473d3cb73323bc879d8a7e8ac11e3cd13c8b5.zip |
Renamed canceled to cancelled
Diffstat (limited to 'packages/0x.js/src/stores')
-rw-r--r-- | packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts b/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts index 9d74da096..666d8363c 100644 --- a/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts +++ b/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts @@ -42,7 +42,7 @@ export class OrderFilledCancelledLazyStore { const methodOpts = { defaultBlock: BlockParamLiteral.Pending, }; - const cancelledTakerAmount = await this.exchange.getCanceledTakerAmountAsync(orderHash, methodOpts); + const cancelledTakerAmount = await this.exchange.getCancelledTakerAmountAsync(orderHash, methodOpts); this.setCancelledTakerAmount(orderHash, cancelledTakerAmount); } const cachedCancelled = this.cancelledTakerAmount[orderHash]; |