aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorMacroFake <falke.marco@gmail.com>2022-05-31 13:30:23 +0200
committerMacroFake <falke.marco@gmail.com>2022-05-31 15:05:57 +0200
commitfa4068b4e2192f168bb120624eca5735f0dadf6f (patch)
treedeae23440db335efc3a7a335c16d22935e9dd946 /src/validation.h
parent5f65afff9c4c735d607a69fc3d18b4ecadbf3ba9 (diff)
downloadbitcoin-fa4068b4e2192f168bb120624eca5735f0dadf6f.tar.xz
Move minRelayTxFee to policy/settings
Also fix includes using iwyu
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/validation.h b/src/validation.h
index 31dd089005..cc94add3cb 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -58,8 +58,6 @@ namespace Consensus {
struct Params;
} // namespace Consensus
-/** Default for -minrelaytxfee, minimum relay fee for transactions */
-static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = 1000;
/** Default for -limitancestorcount, max number of in-mempool ancestors */
static const unsigned int DEFAULT_ANCESTOR_LIMIT = 25;
/** Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors */
@@ -126,8 +124,6 @@ extern bool g_parallel_script_checks;
extern bool fRequireStandard;
extern bool fCheckBlockIndex;
extern bool fCheckpointsEnabled;
-/** A fee rate smaller than this is considered zero fee (for relaying, mining and transaction creation) */
-extern CFeeRate minRelayTxFee;
/** If the tip is older than this (in seconds), the node is considered to be in initial block download. */
extern int64_t nMaxTipAge;