fix checkpoint loading (use carry for add)

This commit is contained in:
cathugger
2023-08-06 05:13:37 +03:00
parent 2b417046b6
commit 6a2b5e60bf
2 changed files with 7 additions and 2 deletions

7
main.c
View File

@@ -612,8 +612,11 @@ int main(int argc,char **argv)
fclose(checkout);
// Apply checkpoint to determseed
for (int i = 0; i < SEED_LEN; i++)
determseed[i] += checkpoint[i];
bool carry = 0;
for (int i = 0; i < SEED_LEN; i++) {
determseed[i] += checkpoint[i] + carry;
carry = determseed[i] < checkpoint[i];
}
}
}
}