Fixed overflow on localsolps and changed sol to hash on mining info

This commit is contained in:
miketout
2018-04-28 20:20:21 -07:00
parent a0dd01bc50
commit 44e17ab3ed
2 changed files with 12 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ struct AtomicCounter {
--value;
}
int get() const {
uint64_t get() const {
return value.load();
}
};