List newest transactions first
This commit is contained in:
parent
fb265520f3
commit
f0c93ce150
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ var WalletPage = React.createClass({
|
|||
}
|
||||
condensedTransactions[txid] += parseFloat(tx["amount"]);
|
||||
});
|
||||
results.forEach(function(tx) {
|
||||
results.reverse().forEach(function(tx) {
|
||||
var txid = tx["txid"];
|
||||
var txval = condensedTransactions[txid];
|
||||
var txdate = new Date(parseInt(tx["time"])*1000);
|
||||
|
|
Loading…
Add table
Reference in a new issue