Skip to content

Commit

Permalink
Fix inverted bitfield flag in python bindings. (Chia-Network#265)
Browse files Browse the repository at this point in the history
This fixes a bug that was introduced in a6fce5d.
  • Loading branch information
MrHacky authored May 26, 2021
1 parent 207d410 commit b014e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-bindings/chiapos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ PYBIND11_MODULE(chiapos, m)
num_buckets,
stripe_size,
num_threads,
nobitfield);
nobitfield ? 0 : ENABLE_BITFIELD);
} catch (const std::exception &e) {
std::cout << "Caught plotting error: " << e.what() << std::endl;
throw e;
Expand Down

0 comments on commit b014e05

Please sign in to comment.