Skip to content

Commit

Permalink
update the peercoin.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
peerchemist committed Feb 19, 2019
1 parent 7afdce3 commit b9cb23f
Showing 1 changed file with 14 additions and 28 deletions.
42 changes: 14 additions & 28 deletions contrib/debian/examples/peercoin.conf
@@ -1,15 +1,12 @@
##
## bitcoin.conf configuration file. Lines beginning with # are comments.
## peercoin.conf configuration file. Lines beginning with # are comments.
##

# Network-related settings:

# Run on the test network instead of the real bitcoin network.
#testnet=0

# Run a regression test network
#regtest=0

# Connect via a SOCKS5 proxy
#proxy=127.0.0.1:9050

Expand Down Expand Up @@ -43,12 +40,12 @@
##############################################################

# Use as many addnode= settings as you like to connect to specific peers
#addnode=69.164.218.197
#addnode=10.0.0.2:8333
#addnode=172.104.239.224
#addnode=104.27.168.223

# Alternatively use as many connect= settings as you like to connect ONLY to specific peers
#connect=69.164.218.197
#connect=10.0.0.1:8333
#connect=172.104.239.224
#connect=104.27.168.223

# Listening mode, enabled by default except when 'connect' is being used
#listen=1
Expand All @@ -57,24 +54,24 @@
#maxconnections=

#
# JSON-RPC options (for controlling a running Bitcoin/bitcoind process)
# JSON-RPC options (for controlling a running Peercoin/peercoind process)
#

# server=1 tells Bitcoin-Qt and bitcoind to accept JSON-RPC commands
# server=1 tells Peercoin-Qt and peercoind to accept JSON-RPC commands
#server=0

# Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6.
# This option can be specified multiple times (default: bind to all interfaces)
#rpcbind=<addr>

# If no rpcpassword is set, rpc cookie auth is sought. The default `-rpccookiefile` name
# is .cookie and found in the `-datadir` being used for bitcoind. This option is typically used
# is .cookie and found in the `-datadir` being used for peercoind. This option is typically used
# when the server and client are run as the same user.
#
# If not, you must set rpcuser and rpcpassword to secure the JSON-RPC api. The first
# method(DEPRECATED) is to set this pair for the server and client:
#rpcuser=Ulysseys
#rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593
#rpcpassword=correct_horse_battery_staple
#
# The second method `rpcauth` can be added to server startup argument. It is set at initialization time
# using the output from the script in share/rpcauth/rpcauth.py after providing a username:
Expand Down Expand Up @@ -103,44 +100,33 @@
# NOTE: opening up the RPC port to hosts outside your local trusted network is NOT RECOMMENDED,
# because the rpcpassword is transmitted over the network unencrypted.

# server=1 tells Bitcoin-Qt to accept JSON-RPC commands.
# it is also read by bitcoind to determine if RPC should be enabled
# server=1 tells Peercoin-Qt to accept JSON-RPC commands.
# it is also read by peercoind to determine if RPC should be enabled
#rpcallowip=10.1.1.34/255.255.255.0
#rpcallowip=1.2.3.4/24
#rpcallowip=2001:db8:85a3:0:0:8a2e:370:7334/96

# Listen for RPC connections on this TCP port:
rpcport=9902

# You can use Bitcoin or bitcoind to send commands to Bitcoin/bitcoind
# You can use Peercoin or peercoind to send commands to Peercoin/peercoind
# running on another host using this option:
#rpcconnect=127.0.0.1

# Create transactions that have enough fees so they are likely to begin confirmation within n blocks (default: 6).
# This setting is over-ridden by the -paytxfee option.
#txconfirmtarget=n

# Miscellaneous options

# Pre-generate this many public/private key pairs, so wallet backups will be valid for
# both prior transactions and several dozen future transactions.
#keypool=100

# Pay an optional transaction fee every time you send bitcoins. Transactions with fees
# Pay an optional transaction fee every time you send peercoins. Transactions with fees
# are more likely than free transactions to be included in generated blocks, so may
# be validated sooner.
#paytxfee=0.00

# Enable pruning to reduce storage requirements by deleting old blocks.
# This mode is incompatible with -txindex and -rescan.
# 0 = default (no pruning).
# 1 = allows manual pruning via RPC.
# >=550 = target to stay under in MiB.
#prune=550

# User interface options

# Start Bitcoin minimized
# Start Peercoin minimized
#min=1

# Minimize to the system tray
Expand Down

0 comments on commit b9cb23f

Please sign in to comment.