diff options
author | Jorge Timón <jtimon@jtimon.cc> | 2019-08-01 22:39:46 +0200 |
---|---|---|
committer | Jorge Timón <jtimon@jtimon.cc> | 2019-10-02 18:10:07 +0200 |
commit | ea4cc3a7b36a9c77dbf0aff439da3ef0ea58e6e4 (patch) | |
tree | 222e89e3f52b551ee3817989fd048236475728b8 /test/functional | |
parent | 884f7cc81b478b599ed8d43ebe80578ea9cdb279 (diff) |
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
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/test_framework/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index f9f5fe553e..ebd7e5d51a 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -299,6 +299,7 @@ def initialize_datadir(dirname, n, chain): f.write("[{}]\n".format(chain_name_conf_section)) f.write("port=" + str(p2p_port(n)) + "\n") f.write("rpcport=" + str(rpc_port(n)) + "\n") + f.write("fallbackfee=0.0002\n") f.write("server=1\n") f.write("keypool=1\n") f.write("discover=0\n") |