5#include <bitcoin-build-config.h>
38 argsman.
AddCommand(
"grind",
"Perform proof of work on hex header string");
50 tfm::format(std::cerr,
"Error parsing command line arguments: %s\n", error);
56 std::string strUsage = CLIENT_NAME
" bitcoin-util utility version " +
FormatFullVersion() +
"\n";
62 "The bitcoin-util tool provides bitcoin related functionality that does not rely on the ability to access a running node. Available [commands] are listed below.\n"
64 "Usage: bitcoin-util [options] [command]\n"
65 "or: bitcoin-util [options] grind <hex-block-header>\n";
72 tfm::format(std::cerr,
"Error: too few parameters\n");
81 }
catch (
const std::exception& e) {
89static void grind_task(uint32_t nBits,
CBlockHeader header, uint32_t offset, uint32_t step, std::atomic<bool>& found, uint32_t& proposed_nonce)
94 if (target == 0 || neg || over)
return;
97 uint32_t finish = std::numeric_limits<uint32_t>::max() - step;
98 finish = finish - (finish % step) + offset;
100 while (!found && header.
nNonce < finish) {
101 const uint32_t next = (finish - header.
nNonce < 5000*step) ? finish : header.
nNonce + 5000*step;
104 if (!found.exchange(
true)) {
105 proposed_nonce = header.
nNonce;
110 }
while(header.
nNonce != next);
116 if (
args.size() != 1) {
117 strPrint =
"Must specify block header to grind";
123 strPrint =
"Could not decode block header";
127 uint32_t nBits = header.
nBits;
128 std::atomic<bool> found{
false};
129 uint32_t proposed_nonce{};
131 std::vector<std::thread> threads;
132 int n_tasks = std::max(1u, std::thread::hardware_concurrency());
133 threads.reserve(n_tasks);
134 for (
int i = 0; i < n_tasks; ++i) {
135 threads.emplace_back(
grind_task, nBits, header, i, n_tasks, std::ref(found), std::ref(proposed_nonce));
137 for (
auto&
t : threads) {
141 header.
nNonce = proposed_nonce;
143 strPrint =
"Could not satisfy difficulty target";
163 }
catch (
const std::exception& e) {
173 tfm::format(std::cerr,
"Error: must specify a command\n");
180 if (
cmd->command ==
"grind") {
185 }
catch (
const std::exception& e) {
186 strPrint = std::string(
"error: ") + e.what();
bool HelpRequested(const ArgsManager &args)
void SetupHelpOptions(ArgsManager &args)
Add help options to the args manager.
arith_uint256 UintToArith256(const uint256 &a)
static void grind_task(uint32_t nBits, CBlockHeader header, uint32_t offset, uint32_t step, std::atomic< bool > &found, uint32_t &proposed_nonce)
static const int CONTINUE_EXECUTION
static void SetupBitcoinUtilArgs(ArgsManager &argsman)
if(ret !=CONTINUE_EXECUTION)
static int Grind(const std::vector< std::string > &args, std::string &strPrint)
const TranslateFn G_TRANSLATION_FUN
Translate string to current locale using Qt.
static int AppInitUtil(ArgsManager &args, int argc, char *argv[])
void SelectParams(const ChainType chain)
Sets the params returned by Params() to those for the given chain type.
void SetupChainParamsBaseOptions(ArgsManager &argsman)
Set the arguments for chainparams.
bool ParseParameters(int argc, const char *const argv[], std::string &error) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
ChainType GetChainType() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Returns the appropriate chain type from the program arguments.
@ ALLOW_ANY
disable validation
void AddArg(const std::string &name, const std::string &help, unsigned int flags, const OptionsCategory &cat) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Add argument.
void AddCommand(const std::string &cmd, const std::string &help) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Add subcommand.
std::optional< const Command > GetCommand() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get the command and command args (returns std::nullopt if no command provided)
bool GetBoolArg(const std::string &strArg, bool fDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return boolean argument or default value.
std::string GetHelpMessage() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get the help string.
Double ended buffer combining vector and stream-like interfaces.
256-bit unsigned big integer.
arith_uint256 & SetCompact(uint32_t nCompact, bool *pfNegative=nullptr, bool *pfOverflow=nullptr)
The "compact" format is a representation of a whole number N using an unsigned 32bit number similar t...
std::string FormatFullVersion()
bool DecodeHexBlockHeader(CBlockHeader &header, const std::string &hex_header)
void PrintExceptionContinue(const std::exception *pex, std::string_view thread_name)
std::string HexStr(const std::span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
std::string LicenseInfo()
Returns licensing information (for -version)
std::function< std::string(const char *)> TranslateFn
Translate a message to the native language of the user.
std::string FormatParagraph(std::string_view in, size_t width, size_t indent)
Format a paragraph of text to a fixed width, adding spaces for indentation to any added line.