Skip to content

Commit 34261bf

Browse files
committed
init: add -ibdboosterfile option
1 parent 6998949 commit 34261bf

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/init.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ void SetupServerArgs(ArgsManager& argsman, bool can_listen_ipc)
473473
argsman.AddArg("-alertnotify=<cmd>", "Execute command when an alert is raised (%s in cmd is replaced by message)", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
474474
#endif
475475
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);
476+
argsman.AddArg("-ibdboosterfile=<file>", "Specify hints file to use for IBD Booster.", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
476477
argsman.AddArg("-blocksdir=<dir>", "Specify directory to hold blocks subdirectory for *.dat files (default: <datadir>)", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
477478
argsman.AddArg("-blocksxor",
478479
strprintf("Whether an XOR-key applies to blocksdir *.dat files. "
@@ -1667,8 +1668,14 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
16671668
}
16681669
#endif
16691670

1670-
LogInfo("Loading IBD Booster hints bitmap...");
1671-
g_ibd_booster_hints.Load("./booster.bin"); // TODO: add -ibdboosterfile parameter
1671+
if (args.IsArgSet("-ibdboosterfile")) {
1672+
fs::path path = fs::absolute(args.GetPathArg("-ibdboosterfile"));
1673+
if (!fs::exists(path)) {
1674+
return InitError(Untranslated("Provided IBD Booster file doesn't exist"));
1675+
}
1676+
LogInfo("Loading IBD Booster hints bitmap file...");
1677+
g_ibd_booster_hints.Load(path.utf8string());
1678+
}
16721679

16731680
// ********************************************************* Step 7: load block chain
16741681

0 commit comments

Comments
 (0)