1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

fix: token balance - pending tx

This commit is contained in:
Szymon Lesisz 2018-05-29 13:36:18 +02:00
parent af26e0f55c
commit 4f5134f32e
5 changed files with 17 additions and 9 deletions

View File

@ -174,7 +174,7 @@ export const calculate = (prevProps: Props, props: Props) => {
if (state.setMax) { if (state.setMax) {
const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, state.currency); const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, state.currency, isToken);
if (isToken) { if (isToken) {
const token: ?Token = findToken(tokens, account.address, state.currency, account.deviceState); const token: ?Token = findToken(tokens, account.address, state.currency, account.deviceState);
@ -390,7 +390,7 @@ export const validation = (props: Props): void => {
} else { } else {
let decimalRegExp: RegExp; let decimalRegExp: RegExp;
const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, state.currency); const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, state.currency, state.currency !== state.networkSymbol);
if (state.currency !== state.networkSymbol) { if (state.currency !== state.networkSymbol) {
const token = findToken(tokens, account.address, state.currency, account.deviceState); const token = findToken(tokens, account.address, state.currency, account.deviceState);
@ -853,7 +853,6 @@ export const onSend = (): AsyncAction => {
txAddress = token.address; txAddress = token.address;
} }
const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, currentState.currency);
const pendingNonce: number = stateUtils.getPendingNonce(pending); const pendingNonce: number = stateUtils.getPendingNonce(pending);
const nonce = pendingNonce > 0 && pendingNonce >= account.nonce ? pendingNonce : account.nonce; const nonce = pendingNonce > 0 && pendingNonce >= account.nonce ? pendingNonce : account.nonce;

View File

@ -79,7 +79,7 @@ const PendingTransactions = (props: Props) => {
<div className="name"> <div className="name">
<a href={ `${props.network.explorer.tx}${tx.id}`} target="_blank" rel="noreferrer noopener">{ name }</a> <a href={ `${props.network.explorer.tx}${tx.id}`} target="_blank" rel="noreferrer noopener">{ name }</a>
</div> </div>
<div className="amount">{ tx.total } { symbol }</div> <div className="amount">{ isSmartContractTx ? tx.amount : tx.total } { symbol }</div>
</div> </div>
) )
}); });

View File

@ -99,7 +99,10 @@ const Summary = (props: Props) => {
</div> </div>
<SummaryTokens tokens={ tokens } removeToken={ props.removeToken } /> <SummaryTokens
pending={ pending }
tokens={ tokens }
removeToken={ props.removeToken } />
</div> </div>
) )

View File

@ -4,10 +4,13 @@
import React from 'react'; import React from 'react';
import ColorHash from 'color-hash'; import ColorHash from 'color-hash';
import ScaleText from 'react-scale-text'; import ScaleText from 'react-scale-text';
import * as stateUtils from '~/js/reducers/utils';
import BigNumber from 'bignumber.js';
import type { Props as BaseProps } from './index'; import type { Props as BaseProps } from './index';
type Props = { type Props = {
pending: $PropertyType<$ElementType<BaseProps, 'selectedAccount'>, 'pending'>,
tokens: $ElementType<BaseProps, 'tokens'>, tokens: $ElementType<BaseProps, 'tokens'>,
removeToken: $ElementType<BaseProps, 'removeToken'> removeToken: $ElementType<BaseProps, 'removeToken'>
} }
@ -25,6 +28,9 @@ const SummaryTokens = (props: Props) => {
background: bgColor.hex(token.name), background: bgColor.hex(token.name),
borderColor: bgColor.hex(token.name) borderColor: bgColor.hex(token.name)
} }
const pendingAmount: BigNumber = stateUtils.getPendingAmount(props.pending, token.symbol, true);
const balance: string = new BigNumber(token.balance).minus(pendingAmount).toString(10);
return ( return (
<div key={ index } className="token"> <div key={ index } className="token">
<div className="icon" style={ iconColor }> <div className="icon" style={ iconColor }>
@ -33,7 +39,7 @@ const SummaryTokens = (props: Props) => {
</div> </div>
</div> </div>
<div className="name">{ token.name }</div> <div className="name">{ token.name }</div>
<div className="balance">{ token.balance } { token.symbol }</div> <div className="balance">{ balance } { token.symbol }</div>
<button className="transparent" onClick={ event => props.removeToken(token) }></button> <button className="transparent" onClick={ event => props.removeToken(token) }></button>
</div> </div>
) )

View File

@ -98,10 +98,10 @@ export const getPendingNonce = (pending: Array<PendingTx>): number => {
}, 0); }, 0);
} }
export const getPendingAmount = (pending: Array<PendingTx>, currency: string): BigNumber => { export const getPendingAmount = (pending: Array<PendingTx>, currency: string, token: boolean = false): BigNumber => {
return pending.reduce((value: BigNumber, tx: PendingTx) => { return pending.reduce((value: BigNumber, tx: PendingTx) => {
if (tx.currency === currency && !tx.rejected) { if (tx.currency === currency && !tx.rejected) {
return new BigNumber(value).plus(tx.total); return new BigNumber(value).plus(token ? tx.amount : tx.total);
} }
return value; return value;
}, new BigNumber('0')); }, new BigNumber('0'));