Merge 676abd1af7 into merged_master (Bitcoin PR bitcoin/bitcoin#30594)

This commit is contained in:
ivanlele 2026-03-11 15:01:09 +00:00
commit 447c519356
No known key found for this signature in database
5 changed files with 9 additions and 6 deletions

View file

@ -93,6 +93,9 @@ util::Result<void> ApplyArgsManOptions(const ArgsManager& argsman, const CChainP
}
mempool_opts.full_rbf = argsman.GetBoolArg("-mempoolfullrbf", mempool_opts.full_rbf);
if (!mempool_opts.full_rbf) {
LogInfo("Warning: mempoolfullrbf=0 set but deprecated and will be removed in a future release\n");
}
mempool_opts.persist_v1_dat = argsman.GetBoolArg("-persistmempoolv1", mempool_opts.persist_v1_dat);