mirror of
https://github.com/Qortal/qortal.git
synced 2025-04-30 14:57:50 +00:00
Fixed bug in OnlineAccountsV3Message
This commit is contained in:
parent
5273968619
commit
32a0b02ea4
@ -122,7 +122,7 @@ public class OnlineAccountsV3Message extends Message {
|
|||||||
bytes.write(Ints.toByteArray(nonceCount));
|
bytes.write(Ints.toByteArray(nonceCount));
|
||||||
|
|
||||||
for (int n = 0; n < nonceCount; ++n) {
|
for (int n = 0; n < nonceCount; ++n) {
|
||||||
int nonce = onlineAccountData.getNonces().get(i);
|
int nonce = onlineAccountData.getNonces().get(n);
|
||||||
bytes.write(Ints.toByteArray(nonce));
|
bytes.write(Ints.toByteArray(nonce));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user