3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-14 11:15:49 +00:00

fixed a copy/paste error in toString by regenerating it

This commit is contained in:
kennycud 2024-10-13 12:35:24 -07:00
parent 7c9d82b780
commit 85cf740839

View File

@ -33,9 +33,10 @@ public class AddressLevelPairing {
public int getLevel() {
return level;
}
@Override
public String toString() {
return "SponsorshipReport{" +
return "AddressLevelPairing{" +
"address='" + address + '\'' +
", level=" + level +
'}';