chore(sfm): uint -> unsigned int
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-17 07:20:16 +01:00
parent 2872c44d8e
commit c615076182
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -8,8 +8,8 @@
#include <cryptopp/secblock.h>
#include <fmt/core.h>
#include <fstream>
#include <cstdint>
#include <fstream>
#include <stdexcept>
#include <utility>
@ -82,7 +82,7 @@ auto SeedFileManager::write_seed_file() -> void {
CryptoPP::SecByteBlock buff{seed_file_length_blocks *
fortuna::Util::gen_block_size};
std::string da_buff{accumulator.get_random_data(
static_cast<uint>(seed_file_length_blocks))};
static_cast<unsigned int>(seed_file_length_blocks))};
fmt::print("[*] sfm: writing seed file\n");
try {