-
Notifications
You must be signed in to change notification settings - Fork 74
/
sample-stakepoold.conf
47 lines (39 loc) · 1.5 KB
/
sample-stakepoold.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
42
43
44
45
46
47
; Specified extended public key is used to generate fee payment addresses
; which are presented to the user.
; Should match dcrstakepool's coldwalletextpub configuration and dcrwallet's
; stakepoolcoldextkey configuration.
;coldwalletextpub=xpub
; Fees as a percentage. 7.5 = 7.5%. Precision of 2, 7.99 = 7.99%.
; Should match dcrstakepool and dcrwallet's configuration.
;poolfees=7.5
; Stay on testnet until everything is well tested. Ideally, you should run
; on testnet with lots of tickets as a benchmark to ensure votes are cast
; within 100ms.
testnet=1
; Database configuration defaults to these, change as needed.
;dbhost=localhost
;dbport=3306
;dbname=stakepool
;dbuser=stakepool
; No default password so you need to specify one.
;dbpassword=
; You should have dcrd running on localhost so winning tickets notifications
; and vote relaying is fast.
dcrdhost=127.0.0.1
dcrdcert=../.dcrd/rpc.cert
;dcrduser=user
;dcrdpassword=pass
; dcrwallet should be running on localhost so wallet RPCs are fast.
wallethost=127.0.0.1
walletcert=../.dcrwallet/rpc.cert
;walletuser=user
;walletpassword=pass
; Default is localhost. Probably want to uncomment to enable listening on all
; interfaces unless you have VPN/tunneling setup.
;rpclisten=0.0.0.0
; Debug logging level.
; Valid levels are {trace, debug, info, warn, error, critical}
; You may also specify <subsystem>=<level>,<subsystem2>=<level>,... to set
; log level for individual subsystems. Use stakepoold --debuglevel=show to list
; available subsystems.
; debuglevel=info