diff options
author | Steve Klebanoff <steve@0xproject.com> | 2018-11-03 06:45:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-03 06:45:58 +0800 |
commit | d0f20a4fd5d1ab563d4b1c941b55018da129334e (patch) | |
tree | f8e19a2aeba33214b0eb784e402a491b9036ff07 /packages/instant/src/redux/actions.ts | |
parent | 18fef7ade493798426417c7095d0458219423d14 (diff) | |
parent | f5c7a3c26a4a1ddb6ba7692cee0d332f2dedb738 (diff) | |
download | dexon-0x-contracts-d0f20a4fd5d1ab563d4b1c941b55018da129334e.tar.gz dexon-0x-contracts-d0f20a4fd5d1ab563d4b1c941b55018da129334e.tar.zst dexon-0x-contracts-d0f20a4fd5d1ab563d4b1c941b55018da129334e.zip |
Merge pull request #1206 from 0xProject/fix/instant/decimal-fields-scaling-amount-input-bn
[instant] Fix decimal input issues on instant
Diffstat (limited to 'packages/instant/src/redux/actions.ts')
-rw-r--r-- | packages/instant/src/redux/actions.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/instant/src/redux/actions.ts b/packages/instant/src/redux/actions.ts index 885f09c7c..9397dcc99 100644 --- a/packages/instant/src/redux/actions.ts +++ b/packages/instant/src/redux/actions.ts @@ -2,8 +2,6 @@ import { BuyQuote } from '@0x/asset-buyer'; import { BigNumber } from '@0x/utils'; import * as _ from 'lodash'; -import { BigNumberInput } from '../util/big_number_input'; - import { ActionsUnion } from '../types'; export interface PlainAction<T extends string> { @@ -42,8 +40,7 @@ export enum ActionTypes { export const actions = { updateEthUsdPrice: (price?: BigNumber) => createAction(ActionTypes.UPDATE_ETH_USD_PRICE, price), - updateSelectedAssetAmount: (amount?: BigNumberInput) => - createAction(ActionTypes.UPDATE_SELECTED_ASSET_AMOUNT, amount), + updateSelectedAssetAmount: (amount?: BigNumber) => createAction(ActionTypes.UPDATE_SELECTED_ASSET_AMOUNT, amount), setBuyOrderStateNone: () => createAction(ActionTypes.SET_BUY_ORDER_STATE_NONE), setBuyOrderStateValidating: () => createAction(ActionTypes.SET_BUY_ORDER_STATE_VALIDATING), setBuyOrderStateProcessing: (txHash: string, startTimeUnix: number, expectedEndTimeUnix: number) => |