Skip to content

Commit

Permalink
Fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica committed Feb 10, 2021
1 parent 4948020 commit 734828b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/vdf_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,7 @@ void SessionOneWeso(tcp::socket& sock) {
integer D(disc);
integer L=root(-D, 4);
PrintInfo("Discriminant = " + to_string(D.impl));
integer init_A(form_a);
PrintInfo("Initial A: " + to_string(init_A.impl));
integer init_B(form_b);
PrintInfo("Initial B: " + to_string(init_B.impl));
form f = form::from_abd(init_A, init_B, D);
form f = DeserializeForm(D, (uint8_t *)initial_form_s, sizeof(initial_form_s));
// Tell client that I'm ready to get the challenges.
boost::asio::write(sock, boost::asio::buffer("OK", 2));

Expand Down

0 comments on commit 734828b

Please sign in to comment.