qt: Add comment to sorting step in refreshAddressTable
This commit is contained in:
parent
1a12b3e090
commit
5da998e887
1 changed files with 2 additions and 0 deletions
|
@ -80,6 +80,8 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// qLowerBound() and qUpperBound() require our cachedAddressTable list to be sorted in asc order
|
// qLowerBound() and qUpperBound() require our cachedAddressTable list to be sorted in asc order
|
||||||
|
// Even though the map is already sorted this re-sorting step is needed because the originating map
|
||||||
|
// is sorted by binary address, not by base58() address.
|
||||||
qSort(cachedAddressTable.begin(), cachedAddressTable.end(), AddressTableEntryLessThan());
|
qSort(cachedAddressTable.begin(), cachedAddressTable.end(), AddressTableEntryLessThan());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue