Skip to content

Commit

Permalink
Fixed proof producer build (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
Iluvmagick authored Feb 8, 2024
1 parent 44f0fbc commit f892924
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ namespace nil {
std::vector<std::uint8_t> cv(filled_context.length(), 0x00);
auto write_iter = cv.begin();
nil::marshalling::status_type status = filled_context.write(write_iter, cv.size());
BOOST_CHECK(status == nil::marshalling::status_type::success);
BOOST_ASSERT(status == nil::marshalling::status_type::success);

// Append constraint_system to the buffer "cv".
using FieldType = typename PlaceholderParamsType::field_type;
Expand Down

0 comments on commit f892924

Please sign in to comment.