fixing some issues when fetching latest address, i wasn't incremeting the index correctly i think

This commit is contained in:
pokkst 2022-09-12 01:05:27 -05:00
parent 21a81a271a
commit 73ff5082c9
No known key found for this signature in database
GPG key ID: 90C2ED85E67A50FF

View file

@ -24,8 +24,8 @@ public class AddressService extends ServiceBase {
public void refreshAddresses() {
for (TransactionInfo info : HistoryService.getInstance().getHistory()) {
if(info.addressIndex > latestAddressIndex) {
latestAddressIndex = info.addressIndex;
if(info.addressIndex >= latestAddressIndex) {
latestAddressIndex = info.addressIndex + 1;
}
}
}