fix(sfm): use correct size in cast
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-24 19:25:04 +01:00
parent 7d856dab8e
commit c9398a0bf4
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -111,8 +111,7 @@ auto SeedFileManager::update_seed_file() -> void {
}
std::string str_buff(reinterpret_cast<const char*>(&buff[0]),
buff.SizeInBytes() *
8); // we need the size in bits
buff.SizeInBytes());
this->_p_accumulator->call_reseed(str_buff);
write_seed_file();