From aa6a8f5b9375d6ffd4ee9ebf1e41fa3a43c42dc7 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Wed, 28 May 2025 19:24:22 -0500 Subject: Enabled the default wallet for wallet based queries on rpc. --- bitcoind/templates/bitcoin.conf.j2 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'bitcoind/templates') diff --git a/bitcoind/templates/bitcoin.conf.j2 b/bitcoind/templates/bitcoin.conf.j2 index 82397f8..f189445 100644 --- a/bitcoind/templates/bitcoin.conf.j2 +++ b/bitcoind/templates/bitcoin.conf.j2 @@ -4,12 +4,18 @@ uacomment={{bitcoind_comment}} datadir={{bitcoind_data_dir}} logdir={{bitcoind_log_dir}} -disablewallet=1 +#disablewallet=1 +wallet=default maxuploadtarget=4096 dbcache=2048 server=1 +rpcbind=127.0.0.1 +{% for ip in bitcoind_rpc_bind %}rpcbind={{ip}} +{% endfor %} rpcallowip=127.0.0.1 +{% for ip in bitcoind_rpc_allow_ip %}rpcallowip={{ip}} +{% endfor %} rpcuser={{bitcoind_rpc_user}} rpcpassword={{bitcoind_rpc_pass}} -- cgit v1.2.3