mirror of
https://codeberg.org/r4v3r23/mysu.git
synced 2024-11-09 23:50:02 +00: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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue