WIP bitcoind config

This commit is contained in:
2020-01-21 15:18:10 -05:00
parent 47105b2a1c
commit 09527e693b
5 changed files with 151 additions and 7 deletions

View File

@@ -1,2 +1,24 @@
node.default['bitcoin']['username'] = 'satoshi'
node.default['bitcoin']['datadir'] = '/mnt/data/bitcoin'
node.default['bitcoin']['username'] = 'bitcoind'
node.default['bitcoin']['usergroup'] = 'bitcoind'
node.default['bitcoin']['datadir'] = '/mnt/data/bitcoin'
node.default['bitcoin']['conf'] = {
testnet: 0,
irc: 1,
dnsseed: 1,
upnp: 1,
checkblocks: 10,
checklevel: 1,
txindex: 1,
whitelist: "127.0.0.1",
listen: 1,
server: 1,
rpcport: 8332,
rpcssl: 0,
rpcuser: 'bitcoind',
rpcbind: "127.0.0.1:8336",
port: 8335,
gen: 0,
zmqpubrawblock: "tcp://127.0.0.1:8337",
zmqpubrawtx: "tcp://127.0.0.1:8338"
}