diff options
author | MacroFake <falke.marco@gmail.com> | 2022-07-21 13:47:36 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-08-02 15:26:49 +0200 |
commit | fadc14e4f514e7167723285e0ac3d4a7149bbee6 (patch) | |
tree | b3299e7b8d83464984e05ed9a13b233af1eafe73 /src/init.cpp | |
parent | fa8a7f01fe1b6db98097021276ed5d929faadbec (diff) |
Remove ::dustRelayFee
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/init.cpp b/src/init.cpp index b358a59dc6..a0e2b7fcfd 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -971,16 +971,6 @@ bool AppInitParameterInteraction(const ArgsManager& args, bool use_syscall_sandb } } - // Feerate used to define dust. Shouldn't be changed lightly as old - // implementations may inadvertently create non-standard transactions - if (args.IsArgSet("-dustrelayfee")) { - if (std::optional<CAmount> parsed = ParseMoney(args.GetArg("-dustrelayfee", ""))) { - dustRelayFee = CFeeRate{parsed.value()}; - } else { - return InitError(AmountErrMsg("dustrelayfee", args.GetArg("-dustrelayfee", ""))); - } - } - nBytesPerSigOp = args.GetIntArg("-bytespersigop", nBytesPerSigOp); if (!g_wallet_init_interface.ParameterInteraction()) return false; |