diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-10 02:40:47 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-10 02:40:47 +0800 |
commit | 2e8f74abce7be3a5799bb93a0360d299de55b621 (patch) | |
tree | e052e2d4aeaf85546cde770748ebc5d2058ea109 /packages/instant/src/components | |
parent | df91d343154bced69be86f7af4c4c702286cfd16 (diff) | |
download | dexon-sol-tools-2e8f74abce7be3a5799bb93a0360d299de55b621.tar dexon-sol-tools-2e8f74abce7be3a5799bb93a0360d299de55b621.tar.gz dexon-sol-tools-2e8f74abce7be3a5799bb93a0360d299de55b621.tar.bz2 dexon-sol-tools-2e8f74abce7be3a5799bb93a0360d299de55b621.tar.lz dexon-sol-tools-2e8f74abce7be3a5799bb93a0360d299de55b621.tar.xz dexon-sol-tools-2e8f74abce7be3a5799bb93a0360d299de55b621.tar.zst dexon-sol-tools-2e8f74abce7be3a5799bb93a0360d299de55b621.zip |
Use existing functions instead of writing our own
Diffstat (limited to 'packages/instant/src/components')
-rw-r--r-- | packages/instant/src/components/zero_ex_instant_provider.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/instant/src/components/zero_ex_instant_provider.tsx b/packages/instant/src/components/zero_ex_instant_provider.tsx index 34257d25f..f5605a187 100644 --- a/packages/instant/src/components/zero_ex_instant_provider.tsx +++ b/packages/instant/src/components/zero_ex_instant_provider.tsx @@ -99,13 +99,13 @@ export class ZeroExInstantProvider extends React.Component<ZeroExInstantProvider asyncData.fetchAvailableAssetDatasAndDispatchToStore(this._store); } // tslint:disable-next-line:no-floating-promises - // asyncData.fetchAccountInfoAndDispatchToStore(this._store); - this._accountUpdateHeartbeat = generateAccountHeartbeater(this._store); + this._accountUpdateHeartbeat = generateAccountHeartbeater(this._store, true); this._accountUpdateHeartbeat.start(ACCOUNT_UPDATE_INTERVAL_TIME_MS); - this._buyQuoteHeartbeat = generateBuyQuoteHeartbeater(this._store); + this._buyQuoteHeartbeat = generateBuyQuoteHeartbeater(this._store, false); this._buyQuoteHeartbeat.start(BUY_QUOTE_UPDATE_INTERVAL_TIME_MS); + asyncData.fetchCurrentBuyQuoteAndDispatchToStore(this._store, true); // warm up the gas price estimator cache just in case we can't // grab the gas price estimate when submitting the transaction |