aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/redux/actions.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-11-10 08:21:32 +0800
committerGitHub <noreply@github.com>2018-11-10 08:21:32 +0800
commit397b4e289015f9bb0831c1a0ce6fee601670b487 (patch)
tree43fe5262fbe6e2ee4e9b19e34ac6784f9eab1a7b /packages/instant/src/redux/actions.ts
parent26cbe7ae6646d97c286e58756c23a93de32ae37b (diff)
parent38896c9358c07d722b2a24d458e6c949b802fa37 (diff)
downloaddexon-sol-tools-397b4e289015f9bb0831c1a0ce6fee601670b487.tar
dexon-sol-tools-397b4e289015f9bb0831c1a0ce6fee601670b487.tar.gz
dexon-sol-tools-397b4e289015f9bb0831c1a0ce6fee601670b487.tar.bz2
dexon-sol-tools-397b4e289015f9bb0831c1a0ce6fee601670b487.tar.lz
dexon-sol-tools-397b4e289015f9bb0831c1a0ce6fee601670b487.tar.xz
dexon-sol-tools-397b4e289015f9bb0831c1a0ce6fee601670b487.tar.zst
dexon-sol-tools-397b4e289015f9bb0831c1a0ce6fee601670b487.zip
Merge pull request #1239 from 0xProject/feature/instant/privacy-mode
[instant] Handle privacy mode in wallets
Diffstat (limited to 'packages/instant/src/redux/actions.ts')
-rw-r--r--packages/instant/src/redux/actions.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/instant/src/redux/actions.ts b/packages/instant/src/redux/actions.ts
index fc89e3d0e..8947c6c97 100644
--- a/packages/instant/src/redux/actions.ts
+++ b/packages/instant/src/redux/actions.ts
@@ -23,7 +23,6 @@ function createAction<T extends string, P>(type: T, data?: P): PlainAction<T> |
export enum ActionTypes {
SET_ACCOUNT_STATE_LOADING = 'SET_ACCOUNT_STATE_LOADING',
SET_ACCOUNT_STATE_LOCKED = 'SET_ACCOUNT_STATE_LOCKED',
- SET_ACCOUNT_STATE_ERROR = 'SET_ACCOUNT_STATE_ERROR',
SET_ACCOUNT_STATE_READY = 'SET_ACCOUNT_STATE_READY',
UPDATE_ACCOUNT_ETH_BALANCE = 'UPDATE_ACCOUNT_ETH_BALANCE',
UPDATE_ETH_USD_PRICE = 'UPDATE_ETH_USD_PRICE',
@@ -47,7 +46,6 @@ export enum ActionTypes {
export const actions = {
setAccountStateLoading: () => createAction(ActionTypes.SET_ACCOUNT_STATE_LOADING),
setAccountStateLocked: () => createAction(ActionTypes.SET_ACCOUNT_STATE_LOCKED),
- setAccountStateError: () => createAction(ActionTypes.SET_ACCOUNT_STATE_ERROR),
setAccountStateReady: (address: string) => createAction(ActionTypes.SET_ACCOUNT_STATE_READY, address),
updateAccountEthBalance: (addressAndBalance: AddressAndEthBalanceInWei) =>
createAction(ActionTypes.UPDATE_ACCOUNT_ETH_BALANCE, addressAndBalance),