aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/redux/async_data.ts
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-29 06:11:06 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-29 06:11:06 +0800
commitf4cc14f43862c639d2cf9f6e5359e4822f1bcacf (patch)
tree02d2d8e4e2851145053f0e3ee0dd0d353d0e3efa /packages/instant/src/redux/async_data.ts
parentca894935f269a385f28e5d3a51720282ab403697 (diff)
downloaddexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar
dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.gz
dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.bz2
dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.lz
dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.xz
dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.zst
dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.zip
QuoteFetchedVia -> QuoteFetchOrigin
Diffstat (limited to 'packages/instant/src/redux/async_data.ts')
-rw-r--r--packages/instant/src/redux/async_data.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/redux/async_data.ts b/packages/instant/src/redux/async_data.ts
index 2efc3698f..6a1d2ed00 100644
--- a/packages/instant/src/redux/async_data.ts
+++ b/packages/instant/src/redux/async_data.ts
@@ -4,7 +4,7 @@ import * as _ from 'lodash';
import { Dispatch } from 'redux';
import { BIG_NUMBER_ZERO } from '../constants';
-import { AccountState, ERC20Asset, OrderProcessState, ProviderState, QuoteFetchedVia } from '../types';
+import { AccountState, ERC20Asset, OrderProcessState, ProviderState, QuoteFetchOrigin } from '../types';
import { analytics } from '../util/analytics';
import { assetUtils } from '../util/asset';
import { buyQuoteUpdater } from '../util/buy_quote_updater';
@@ -84,7 +84,7 @@ export const asyncData = {
fetchCurrentBuyQuoteAndDispatchToStore: async (
state: State,
dispatch: Dispatch,
- options: { updateSilently: boolean; fetchedVia: QuoteFetchedVia },
+ options: { updateSilently: boolean; fetchedVia: QuoteFetchOrigin },
) => {
const { buyOrderState, providerState, selectedAsset, selectedAssetUnitAmount, affiliateInfo } = state;
const assetBuyer = providerState.assetBuyer;