Fixed bug in OnlineAccountsV3Message

This commit is contained in:
CalDescent 2022-04-01 20:06:22 +01:00
parent 5273968619
commit 32a0b02ea4

View File

@ -122,7 +122,7 @@ public class OnlineAccountsV3Message extends Message {
bytes.write(Ints.toByteArray(nonceCount));
for (int n = 0; n < nonceCount; ++n) {
int nonce = onlineAccountData.getNonces().get(i);
int nonce = onlineAccountData.getNonces().get(n);
bytes.write(Ints.toByteArray(nonce));
}
}