Truly decouple wallet from chainparams for -fallbackfee

Before it was 0 by default for main and 20000 for test and regtest.
Now it is 0 by default for all chains, thus there's no need to call Params().

Also now the default for main is properly documented
This commit is contained in:
Jorge Timón
2019-08-01 22:39:46 +02:00
parent 884f7cc81b
commit ea4cc3a7b3
5 changed files with 16 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
Low-level changes
=================
Tests
---
- `-fallbackfee` was 0 (disabled) by default for the main chain, but 20000 by default for the test chains. Now it is 0 by default for all chains. Testnet and regtest users will have to add fallbackfee=20000 to their configuration if they weren't setting it and they want it to keep working like before. (#16524)