You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useful for when you have a blocks dir and you want to benchmark rebuilding
the block index / chainstate with different db implementations.
can specify -blocksdir=<blocks directory> -blockindexdir=<my custom index dir>
and reuse the same blocksdir to test multiple chainstate / block index implementations
argsman.AddArg("-assumevalid=<hex>", strprintf("If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet3: %s, testnet4: %s, signet: %s)", defaultChainParams->GetConsensus().defaultAssumeValid.GetHex(), testnetChainParams->GetConsensus().defaultAssumeValid.GetHex(), testnet4ChainParams->GetConsensus().defaultAssumeValid.GetHex(), signetChainParams->GetConsensus().defaultAssumeValid.GetHex()), ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
463
463
argsman.AddArg("-blocksdir=<dir>", "Specify directory to hold blocks subdirectory for *.dat files (default: <datadir>)", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
464
+
argsman.AddArg("-blockindexdir=<dir>", "Specify directory to hold blocks index subdirectory (default: <datadir>/blocks/)", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
464
465
argsman.AddArg("-blocksxor",
465
466
strprintf("Whether an XOR-key applies to blocksdir *.dat files. "
466
467
"The created XOR-key will be zeros for an existing blocksdir or when `-blocksxor=0` is "
0 commit comments