aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSuhail Saqan <suhailsaqan@users.noreply.github.com>2022-05-17 14:44:20 -0700
committerSuhail Saqan <suhailsaqan@users.noreply.github.com>2022-05-18 10:50:59 -0700
commitb953ea6cc691ba61bf08eb186e76e7e8b7ba8120 (patch)
tree26a896590ceb5d383c017eb2df56cd85be9630f6 /test
parent002411dc53753b52fef645484258e8baf41585a1 (diff)
downloadbitcoin-b953ea6cc691ba61bf08eb186e76e7e8b7ba8120.tar.xz
rpc: Put undocumented JSON failure mode behind a runtime flag
rpc: Put undocumented JSON failure mode behind a runtime flag
Diffstat (limited to 'test')
-rw-r--r--test/functional/test_framework/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py
index 8651bcf636..b043d1a70d 100644
--- a/test/functional/test_framework/util.py
+++ b/test/functional/test_framework/util.py
@@ -378,6 +378,7 @@ def write_config(config_path, *, n, chain, extra_config="", disable_autoconnect=
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("rpcdoccheck=1\n")
f.write("fallbackfee=0.0002\n")
f.write("server=1\n")
f.write("keypool=1\n")