mirror of
https://codeberg.org/anoncontributorxmr/mysu.git
synced 2025-03-10 07:29:42 -06:00
fixing some issues when fetching latest address, i wasn't incremeting the index correctly i think
This commit is contained in:
parent
21a81a271a
commit
73ff5082c9
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user