Skip to content

Commit

Permalink
fixed build error
Browse files Browse the repository at this point in the history
  • Loading branch information
allenlinkme committed Oct 15, 2021
1 parent 280ddf4 commit 6f59ed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prover_disk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ class DiskProver {
LargeBits hash_bits = LargeBits(hash_c.data(), 32, 256);
uint8_t* hash_bits_buf = new uint8_t[32];
hash_bits.ToBytes(hash_bits_buf);
string hex_sp_quality_string("0x");
std::string hex_sp_quality_string("0x");
hex_sp_quality_string.append(Util::HexStr(hash_bits_buf, 16));
uint128_t sp_quality_string_init = uint128_t(hex_sp_quality_string);
uint128_t factor_pow = uint128_t("147573952589676412928");
Expand Down

0 comments on commit 6f59ed8

Please sign in to comment.