Skip to content

Commit 8edef9d

Browse files
committed
init: add -ibdboosterfile option
1 parent af8627a commit 8edef9d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/init.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -1667,8 +1667,14 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
16671667
}
16681668
#endif
16691669

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

16731679
// ********************************************************* Step 7: load block chain
16741680

0 commit comments

Comments
 (0)