In the meeting of 2018-07-05, we discussed dropping the minimum fee rate below 1000 satoshi/kB. This patch set does only that, leaving related features for other PRs.
- it changes the min tx fee to 200 s/kvB, and the incremental relay fee to 100 s/B
- it leaves wallet min fee and incremental fee at 1000 s/kvB and 5000 s/kvB for compatibility while the network upgrades
- it changes the functional tests that are written assuming 1000s/kvB as the min fee levels to explicitly set that via command line parameter
There’s a bit more of an explanation for some of the choices in the individual commit messages.
Related PRs:
- #13987 – report minfee in getpeerinfo. useful to observe if your peers have lowered their min relay fees
- #13988 – settxfee checks. this is useful since currently settxfee to the minrelaytxfee works fine, but with a lower minrelaytxfee, settxfee will be ignored for the range of values between minrelaytxfee and mintxfee which can be confusing
- #13990 – fix fee estimation to work with lower fees; currently fee estimation won’t give estimates lower than 1000 satoshi per kilobyte.