diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-10-27 17:21:43 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-11-09 21:00:16 +0100 |
commit | 536766c903c8dc84e6709e4bd387aad5acf8e433 (patch) | |
tree | 4534cad8d5959d8791f1ed016f9717e787e7ab7e /src/main.h | |
parent | 5f46a7d0689ff1457b016fdf0de89e5153058864 (diff) |
[trivial] New DEFAULT_MIN_RELAY_TX_FEE = 1000
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h index 273a450867..0a7944092a 100644 --- a/src/main.h +++ b/src/main.h @@ -41,6 +41,8 @@ struct CNodeStateStats; /** Default for accepting alerts from the P2P network. */ static const bool DEFAULT_ALERTS = true; +/** Default for -minrelaytxfee, minimum relay fee for transactions */ +static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = 1000; /** Default for -maxorphantx, maximum number of orphan transactions kept in memory */ static const unsigned int DEFAULT_MAX_ORPHAN_TRANSACTIONS = 100; /** Default for -limitancestorcount, max number of in-mempool ancestors */ |