Created
February 9, 2021 20:05
-
-
Save PierreRochard/5faf928e4e8ee70a437344bc483ae0ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bitcoin-s { | |
datadir = ${HOME}/.bitcoin-s | |
network = mainnet # regtest, testnet3, mainnet | |
logging { | |
level = WARN # trace, debug, info, warn, error, off | |
# You can also tune specific module loggers. | |
# They each take the same levels as above. | |
# If they are commented out (as they are | |
# by default), `logging.level` gets used | |
# instead. | |
# The available loggers are: | |
# incoming and outgoing P2P messages | |
# p2p = info | |
# verification of block headers, merkle trees | |
# chain-verification = info | |
# generation of addresses, signing of TXs | |
# key-handling = info | |
# wallet operations not related to key management | |
# wallet = info | |
# HTTP RPC server | |
# http = info | |
# Database interactions | |
# database = info | |
# whether or not to write to the log file | |
disable-file = false | |
# whether or not to log to stdout | |
disable-console = false | |
} | |
node { | |
mode = bitcoind # neutrino, spv | |
peers = ["localhost:18444"] # a list of peer addresses in form "hostname:portnumber" | |
# (e.g. "neutrino.testnet3.suredbits.com:18333") | |
# Port number is optional, the default value is 8333 for mainnet, | |
# 18333 for testnet and 18444 for regtest. | |
} | |
chain { | |
neutrino { | |
filter-header-batch-size = 2000 | |
filter-batch-size = 100 | |
} | |
} | |
# settings for wallet module | |
wallet { | |
defaultAccountType = segwit # legacy, segwit, nested-segwit | |
bloomFalsePositiveRate = 0.0001 # percentage | |
addressGapLimit = 20 | |
discoveryBatchSize = 100 | |
requiredConfirmations = 6 | |
} | |
} | |
akka { | |
loglevel = "OFF" | |
stdout-loglevel = "OFF" | |
http { | |
client { | |
# The time after which an idle connection will be automatically closed. | |
# Set to `infinite` to completely disable idle connection timeouts. | |
# some requests potentially take a long time, like generate and prune | |
idle-timeout = 5 minutes | |
} | |
} | |
actor { | |
debug { | |
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill etc.) | |
autoreceive= off | |
# enable function of LoggingReceive, which is to log any received message at | |
# DEBUG level | |
receive = on | |
# enable DEBUG logging of unhandled messages | |
unhandled = off | |
# enable DEBUG logging of actor lifecycle changes | |
lifecycle = off | |
event-stream=off | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment