From fadc14e4f514e7167723285e0ac3d4a7149bbee6 Mon Sep 17 00:00:00 2001 From: MacroFake Date: Thu, 21 Jul 2022 13:47:36 +0200 Subject: Remove ::dustRelayFee --- src/init.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/init.cpp') 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 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; -- cgit v1.2.3