Added BlockTemplate tests

This commit is contained in:
SChernykh
2022-11-24 21:38:15 +01:00
parent 9283677a2b
commit 4bb1982806
6 changed files with 133 additions and 22 deletions
+3
View File
@@ -238,6 +238,9 @@ std::istream& operator>>(std::istream& s, hash& h)
found_number = true;
h.h[index >> 1] = (h.h[index >> 1] << 4) | digit;
++index;
if (index >= HASH_SIZE * 2) {
return s;
}
}
else if (found_number) {
return s;