aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-13 19:20:13 +0800
committerFabio Berger <me@fabioberger.com>2018-06-13 19:20:13 +0800
commit946e6c16442ce434e160fa47a87cd705c5274038 (patch)
treebf2569f06bac0ef14edebf60d1f5f7e1dfe120b1 /packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts
parent3eb232b3fcd73eec25efa6754530bc54b88f3f82 (diff)
downloaddexon-sol-tools-946e6c16442ce434e160fa47a87cd705c5274038.tar
dexon-sol-tools-946e6c16442ce434e160fa47a87cd705c5274038.tar.gz
dexon-sol-tools-946e6c16442ce434e160fa47a87cd705c5274038.tar.bz2
dexon-sol-tools-946e6c16442ce434e160fa47a87cd705c5274038.tar.lz
dexon-sol-tools-946e6c16442ce434e160fa47a87cd705c5274038.tar.xz
dexon-sol-tools-946e6c16442ce434e160fa47a87cd705c5274038.tar.zst
dexon-sol-tools-946e6c16442ce434e160fa47a87cd705c5274038.zip
Remaining refactors of order-utils components for V2
Diffstat (limited to 'packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts')
-rw-r--r--packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts b/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts
index 08d50b924..e7352119d 100644
--- a/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts
+++ b/packages/order-utils/src/store/balance_and_proxy_allowance_lazy_store.ts
@@ -19,8 +19,8 @@ export class BalanceAndProxyAllowanceLazyStore implements AbstractBalanceAndProx
[userAddress: string]: BigNumber;
};
};
- constructor(token: AbstractBalanceAndProxyAllowanceFetcher) {
- this._balanceAndProxyAllowanceFetcher = token;
+ constructor(balanceAndProxyAllowanceFetcher: AbstractBalanceAndProxyAllowanceFetcher) {
+ this._balanceAndProxyAllowanceFetcher = balanceAndProxyAllowanceFetcher;
this._balance = {};
this._proxyAllowance = {};
}