mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 01:08:27 +00:00
eslint
This commit is contained in:
parent
590e0ca642
commit
957e02f313
@ -1,10 +1,8 @@
|
||||
/* @flow */
|
||||
|
||||
import EthereumjsUtil from 'ethereumjs-util';
|
||||
import TrezorConnect from 'trezor-connect';
|
||||
import BigNumber from 'bignumber.js';
|
||||
import * as BLOCKCHAIN from 'actions/constants/blockchain';
|
||||
import * as PENDING from 'actions/constants/pendingTx';
|
||||
|
||||
import type {
|
||||
TrezorDevice,
|
||||
@ -128,6 +126,7 @@ export const onBlockMined = (coinInfo: any): PromiseAction<void> => async (dispa
|
||||
|
||||
|
||||
// not used for now, waiting for fix in blockbook
|
||||
/*
|
||||
export const onNotification = (payload: any): PromiseAction<void> => async (dispatch: Dispatch, getState: GetState): Promise<void> => {
|
||||
// this event can be triggered multiple times
|
||||
// 1. check if pair [txid + address] is already in reducer
|
||||
@ -166,6 +165,7 @@ export const onNotification = (payload: any): PromiseAction<void> => async (disp
|
||||
}
|
||||
}
|
||||
};
|
||||
*/
|
||||
|
||||
|
||||
export const subscribe = (network: string): PromiseAction<void> => async (dispatch: Dispatch, getState: GetState): Promise<void> => {
|
||||
|
@ -135,7 +135,7 @@ export const discoverAccount = (address: string, network: string): PromiseAction
|
||||
export const resolvePendingTransactions = (network: string): PromiseAction<void> => async (dispatch: Dispatch, getState: GetState): Promise<void> => {
|
||||
const instance: Web3Instance = await dispatch(initWeb3(network));
|
||||
const pending = getState().pending.filter(p => p.network === network);
|
||||
for (const tx of pending) {
|
||||
pending.forEach(async (tx) => {
|
||||
const status = await instance.web3.eth.getTransaction(tx.id);
|
||||
if (!status) {
|
||||
dispatch({
|
||||
@ -158,7 +158,7 @@ export const resolvePendingTransactions = (network: string): PromiseAction<void>
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/*
|
||||
@ -205,7 +205,7 @@ export const updateAccount = (account: Account, newAccount: EthereumAccount, net
|
||||
|
||||
export const updateAccountTokens = (account: Account): PromiseAction<void> => async (dispatch: Dispatch, getState: GetState): Promise<void> => {
|
||||
const tokens = getState().tokens.filter(t => t.network === account.network && t.ethAddress === account.address);
|
||||
for (const token of tokens) {
|
||||
tokens.forEach(async (token) => {
|
||||
const balance = await dispatch(getTokenBalance(token));
|
||||
// const newBalance: string = balance.dividedBy(Math.pow(10, token.decimals)).toString(10);
|
||||
if (balance !== token.balance) {
|
||||
@ -215,7 +215,7 @@ export const updateAccountTokens = (account: Account): PromiseAction<void> => as
|
||||
balance,
|
||||
));
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
export const getTokenInfo = (address: string, network: string): PromiseAction<NetworkToken> => async (dispatch: Dispatch): Promise<NetworkToken> => {
|
||||
|
@ -195,7 +195,6 @@ const AccountSend = (props: Props) => {
|
||||
errors,
|
||||
warnings,
|
||||
infos,
|
||||
data,
|
||||
sending,
|
||||
advanced,
|
||||
} = props.sendForm;
|
||||
|
Loading…
Reference in New Issue
Block a user