Fix transaction sorting comparator
This commit is contained in:
parent
fd7eaca46a
commit
0df0015755
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ angular.module('copayApp.services')
|
||||||
|
|
||||||
var myCopayerId = w.getMyCopayerId();
|
var myCopayerId = w.getMyCopayerId();
|
||||||
var pendingForUs = 0;
|
var pendingForUs = 0;
|
||||||
var inT = w.getTxProposals().sort(function(t1, t2) { return t1.createdTs < t2.createdTs });
|
var inT = w.getTxProposals().sort(function(t1, t2) { return t2.createdTs - t1.createdTs });
|
||||||
var txs = [];
|
var txs = [];
|
||||||
|
|
||||||
inT.forEach(function(i, index){
|
inT.forEach(function(i, index){
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue