aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/account-detail.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r--ui/app/account-detail.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 76554472e..d7473aee5 100644
--- a/ui/app/account-detail.js
+++ b/ui/app/account-detail.js
@@ -29,7 +29,7 @@ function mapStateToProps (state) {
network: state.metamask.network,
unconfMsgs: valuesFor(state.metamask.unconfMsgs),
shapeShiftTxList: state.metamask.shapeShiftTxList,
- transactions: state.metamask.transactions,
+ transactions: state.metamask.selectedAccountTxList || [],
}
}
@@ -249,9 +249,8 @@ AccountDetailScreen.prototype.subview = function () {
AccountDetailScreen.prototype.transactionList = function () {
const {transactions, unconfMsgs, address, network, shapeShiftTxList } = this.props
// sort by recency
- var soretedTxs = transactions.sort((a, b) => b.time - a.time)
return h(TransactionList, {
- transactions: soretedTxs,
+ transactions: transactions.sort((a, b) => b.time - a.time),
network,
unconfMsgs,
address,