-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitcoin.conf
41 lines (34 loc) · 1.12 KB
/
bitcoin.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
## ____ _ __ _
## / __ ) (_)/ /_ _____ ____ (_)____
## / __ |/ // __// ___// __ \ / // __ \
## / /_/ // // /_ / /__ / /_/ // // / / /
## /_____//_/ \__/ \___/ \____//_//_/ /_/
##
## Prototypal Configuration for Low Memory Environment
##
## GitHub Repository:
## https://github.com/wbnns/low-memory-bitcoin
##
## Reference Material:
## https://bitcoin.stackexchange.com/questions/50580/how-to-run-bitcoind-in-a-low-memory-environment
## https://en.bitcoin.it/wiki/Running_Bitcoin
##
## Questions:
## Will Binns (GitHub/Telegram/Twitter: @wbnns | Web: https://willbinns.org/)
# Disable the mempool entirely; do not store unconfirmed transactions
blocksonly=1
# Set database cache size in megabytes
dbcache=20
# Disable wallet
disablewallet=1
# Maximum number of inbound+outbound connections
maxconnections=4
# Maximum size of the signature cache
maxsigcachesize=4
# Enable pruning to reduce storage requirements by deleting old blocks
# 0 = default (no pruning)
# 1 = allows manual pruning via RPC
# >=550 = target to stay under in megabytes
prune=550
# Set the number of threads to service RPC calls
rpcthreads=1