conf: saner defaults

This commit is contained in:
Jethro Grassie 2020-09-02 03:28:46 -04:00
parent 30edb1a3e4
commit 98bda36af4
No known key found for this signature in database
GPG Key ID: DE8ED755616565BB
2 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ rpc-port = 28081
wallet-rpc-host = 127.0.0.1
wallet-rpc-port = 28084
rpc-timeout = 15
idle-timeout = 120
idle-timeout = 150
pool-wallet = 9y4V6rSRbXDhmoNQpCrDBQXFM25rqFBZYBq8RepazSLSBwsj5kRtuM9iCSuz3vs9KbfZhrQj1BKRxVCpyqii7pca3vJaNFs
pool-fee-wallet =
pool-start-diff = 1000
@ -15,7 +15,7 @@ pool-fixed-diff = 0
pool-fee = 0.01
payment-threshold = 0.33
share-mul = 2.0
retarget-time = 120
retarget-time = 30
retarget-ratio = 0.55
log-level = 5
log-file =

View File

@ -3609,10 +3609,10 @@ read_config(const char *config_file)
strcpy(config.rpc_host, "127.0.0.1");
config.rpc_port = 18081;
config.rpc_timeout = 15;
config.idle_timeout = BLOCK_TIME;
config.pool_start_diff = 100;
config.idle_timeout = 150;
config.pool_start_diff = 1000;
config.share_mul = 2.0;
config.retarget_time = 120;
config.retarget_time = 30;
config.retarget_ratio = 0.55;
config.pool_fee = 0.01;
config.payment_threshold = 0.33;