diff options
author | Jon Atack <jon@atack.com> | 2020-09-30 19:08:52 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2020-10-01 11:25:42 +0200 |
commit | 6fccad7f711df330e461c1fab3f758d078345ed5 (patch) | |
tree | d63d51f64ff9fc2ac59e7b87f92f5160a2cdbffe /src/init.cpp | |
parent | 3487e421a7fef4b28381efcf21a7e38483946cec (diff) |
signet: do not log signet startup messages for other chains
and move signet network magic logging from chainparams.cpp to init.cpp
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index dea5f097e5..edf2a79998 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -37,6 +37,7 @@ #include <policy/fees.h> #include <policy/policy.h> #include <policy/settings.h> +#include <protocol.h> #include <rpc/blockchain.h> #include <rpc/register.h> #include <rpc/server.h> @@ -966,6 +967,9 @@ bool AppInitParameterInteraction(const ArgsManager& args) // specified in default section of config file, but not overridden // on the command line or in this network's section of the config file. std::string network = args.GetChainName(); + if (network == CBaseChainParams::SIGNET) { + LogPrintf("Signet derived magic (message start): %s\n", HexStr(chainparams.MessageStart())); + } bilingual_str errors; for (const auto& arg : args.GetUnsuitableSectionOnlyArgs()) { errors += strprintf(_("Config setting for %s only applied on %s network when in [%s] section.") + Untranslated("\n"), arg, network, network); |