|
11 | 11 |
|
12 | 12 | #include <kernel/checks.h>
|
13 | 13 | #include <kernel/mempool_persist.h>
|
| 14 | +#include <kernel/validation_cache_sizes.h> |
14 | 15 |
|
15 | 16 | #include <addrman.h>
|
16 | 17 | #include <banman.h>
|
|
44 | 45 | #include <node/mempool_args.h>
|
45 | 46 | #include <node/mempool_persist_args.h>
|
46 | 47 | #include <node/miner.h>
|
| 48 | +#include <node/validation_cache_args.h> |
47 | 49 | #include <policy/feerate.h>
|
48 | 50 | #include <policy/fees.h>
|
49 | 51 | #include <policy/fees_args.h>
|
|
105 | 107 | #endif
|
106 | 108 |
|
107 | 109 | using kernel::DumpMempool;
|
| 110 | +using kernel::ValidationCacheSizes; |
108 | 111 |
|
| 112 | +using node::ApplyArgsManOptions; |
109 | 113 | using node::CacheSizes;
|
110 | 114 | using node::CalculateCacheSizes;
|
111 | 115 | using node::DEFAULT_PERSIST_MEMPOOL;
|
@@ -548,7 +552,7 @@ void SetupServerArgs(ArgsManager& argsman)
|
548 | 552 | argsman.AddArg("-addrmantest", "Allows to test address relay on localhost", ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
|
549 | 553 | argsman.AddArg("-capturemessages", "Capture all P2P messages to disk", ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
|
550 | 554 | argsman.AddArg("-mocktime=<n>", "Replace actual time with " + UNIX_EPOCH_TIME + " (default: 0)", ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
|
551 |
| - argsman.AddArg("-maxsigcachesize=<n>", strprintf("Limit sum of signature cache and script execution cache sizes to <n> MiB (default: %u)", DEFAULT_MAX_SIG_CACHE_SIZE), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST); |
| 555 | + argsman.AddArg("-maxsigcachesize=<n>", strprintf("Limit sum of signature cache and script execution cache sizes to <n> MiB (default: %u)", DEFAULT_MAX_SIG_CACHE_BYTES >> 20), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST); |
552 | 556 | argsman.AddArg("-maxtipage=<n>", strprintf("Maximum tip age in seconds to consider node in initial block download (default: %u)", DEFAULT_MAX_TIP_AGE), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
|
553 | 557 | argsman.AddArg("-printpriority", strprintf("Log transaction fee rate in " + CURRENCY_UNIT + "/kvB when mining blocks (default: %u)", DEFAULT_PRINTPRIORITY), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
|
554 | 558 | argsman.AddArg("-uacomment=<cmt>", "Append comment to the user agent string", ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
|
@@ -1115,8 +1119,12 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
|
1115 | 1119 | args.GetArg("-datadir", ""), fs::PathToString(fs::current_path()));
|
1116 | 1120 | }
|
1117 | 1121 |
|
1118 |
| - if (!InitSignatureCache() || !InitScriptExecutionCache()) { |
1119 |
| - return InitError(strprintf(_("Unable to allocate memory for -maxsigcachesize: '%s' MiB"), args.GetIntArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_SIZE))); |
| 1122 | + ValidationCacheSizes validation_cache_sizes{}; |
| 1123 | + ApplyArgsManOptions(args, validation_cache_sizes); |
| 1124 | + if (!InitSignatureCache(validation_cache_sizes.signature_cache_bytes) |
| 1125 | + || !InitScriptExecutionCache(validation_cache_sizes.script_execution_cache_bytes)) |
| 1126 | + { |
| 1127 | + return InitError(strprintf(_("Unable to allocate memory for -maxsigcachesize: '%s' MiB"), args.GetIntArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_BYTES >> 20))); |
1120 | 1128 | }
|
1121 | 1129 |
|
1122 | 1130 | int script_threads = args.GetIntArg("-par", DEFAULT_SCRIPTCHECK_THREADS);
|
|
0 commit comments