mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
cormorant: fix wallet loading with multiple ancestors in the mempool
This commit is contained in:
parent
0ed8c6af7c
commit
ae29108656
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ public class TxEntry implements Comparable<TxEntry> {
|
||||||
return height - o.height;
|
return height - o.height;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(height == 0) {
|
if(height <= 0) {
|
||||||
return tx_hash.compareTo(o.tx_hash);
|
return tx_hash.compareTo(o.tx_hash);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue