Skip to content

Instantly share code, notes, and snippets.

@Janaka-Steph
Created June 4, 2018 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Janaka-Steph/034d53d4623142b202563f00f140d454 to your computer and use it in GitHub Desktop.
Save Janaka-Steph/034d53d4623142b202563f00f140d454 to your computer and use it in GitHub Desktop.
Bitcoin configuration - Testnet, Raspberry Pi 3
# Generated by https://jlopp.github.io/bitcoin-core-config-generator/
# This config should be placed in following path (Linux):
# ~/.bitcoin/bitcoin.conf
# Bitcoin Testnet for Raspberry Pi 3
# [core]
# Maintain a full transaction index, used by the getrawtransaction rpc call.
txindex=1
# Set database cache size in megabytes; machines sync faster with a larger cache. Recommend setting as high as possible based upon machine's available RAM.
dbcache=100
# Keep at most <n> unconnectable transactions in memory.
maxorphantx=10
# Keep the transaction memory pool below <n> megabytes.
maxmempool=50
# [network]
# Use UPnP to map the listening port. Will try to automagically open a port on your router
upnp=1
# Maintain at most N connections to peers.
maxconnections=40
# Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit.
maxuploadtarget=5000
# [debug]
# Enable debug logging for all categories
debug=1
# Location of the debug log
# debuglogfile=$HOME/Library/Application\ Support/Bitcoin/debug.log
# Log IP Addresses in debug output.
logips=1
# Run this node on the Bitcoin Test Network.
testnet=1
# [rpc]
# Accept command line and JSON-RPC commands.
server=1
# Accept public REST requests. Enables REST interface on 127.0.0.1:8332
rest=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment