summarylogtreecommitdiffstats
path: root/bitcoin.conf
diff options
context:
space:
mode:
authorTomZ2017-11-09 20:29:59 +0100
committerTomZ2017-11-09 20:42:23 +0100
commit30d09f36fa6bb85be2f69309ee8ae23dd63e34ca (patch)
treec5db8d9092d18584f3416673a9f1794a7998289a /bitcoin.conf
parentd4affe738438d7906333e050acced524487275e5 (diff)
downloadaur-bitcoin-classic-daemon.tar.gz
update
Diffstat (limited to 'bitcoin.conf')
-rw-r--r--bitcoin.conf31
1 files changed, 0 insertions, 31 deletions
diff --git a/bitcoin.conf b/bitcoin.conf
deleted file mode 100644
index 8d6e980515c3..000000000000
--- a/bitcoin.conf
+++ /dev/null
@@ -1,31 +0,0 @@
-# See a longer example at; /usr/share/doc/bitcoin/examples/bitcoin.conf
-
-# Defaults that are also passed in by systemd
-datadir=/var/lib/bitcoind
-pid=/var/lib/bitcoind/bitcoind.pid
-disablewallet=1
-
-# make the cookie go to /etc/bitcoin
-rpccookiefile=/etc/bitcoin/.cookie
-# make sure the cookie is readable by users able to read /etc/bitcoin
-sysperms=1
-
-# --rpcauth--
-# There additionally is the config option "rpcauth" to allow
-# multiple different users to use different credentials for login.
-#
-# The config option comes in the format:
-# rpcauth=USERNAME:SALT$HASH
-#
-# Where:
-# 1-USERNAME is desired username. Name doesn't have to be unique.
-# 2-SALT is the salt for the HMAC_SHA256 function
-# 3-HASH is a hex string that is the result of the HMAC_SHA256
-# function on the user's secret password plus the SALT as the key.
-#
-# A "canonical" password generating python script has been supplied
-# at "/etc/bitcoin/rpcuser.py". From the client-side, one connects
-# using the standard -rpcuser/-rpcpassword options.
-#
-# How to create an RPC user login credential.
-# $ python2 /etc/bitcoin/rpcuser.py <username>