diff --git a/src/reducers/utils/index.js b/src/reducers/utils/index.js index 4bab40c1..fc09c7b9 100644 --- a/src/reducers/utils/index.js +++ b/src/reducers/utils/index.js @@ -95,6 +95,7 @@ export const getPendingSequence = (pending: Array): number => pendi }, 0); export const getPendingAmount = (pending: Array, currency: string, token: boolean = false): BigNumber => pending.reduce((value: BigNumber, tx: Transaction): BigNumber => { + if (tx.type !== 'send') return value; if (!token) { // regular transactions // add fees from token txs and amount from regular txs