We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffca321 commit 226df09Copy full SHA for 226df09
include/core/Version.hpp
@@ -4,7 +4,7 @@
4
#include <string>
5
6
namespace core {
7
- const std::string PRMERS_VERSION = "4.15.59-alpha";
+ const std::string PRMERS_VERSION = "4.15.60-alpha";
8
} // namespace core
9
10
#endif // VERSION_HPP
src/io/JsonBuilder.cpp
@@ -394,7 +394,7 @@ static std::string generatePrimeNetJson(
394
if (isEdw) canon << "E"; // sigma
395
if (opts.sigma192) {
396
canon << opts.sigma192; // *** TODO: not sure where this value comes from ***
397
- } else if (opts.sigma_hex) {
+ } else if (!opts.sigma_hex.empty()) {
398
canon << "0x" << toLower(opts.sigma_hex);
399
} else if (opts.sigma) {
400
canon << opts.sigma;
0 commit comments