mirror of
https://git.wownero.com/wownero/wownero-puddle.git
synced 2024-08-15 01:03:20 +00:00
conf: saner defaults
This commit is contained in:
parent
30edb1a3e4
commit
98bda36af4
2 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@ rpc-port = 28081
|
||||||
wallet-rpc-host = 127.0.0.1
|
wallet-rpc-host = 127.0.0.1
|
||||||
wallet-rpc-port = 28084
|
wallet-rpc-port = 28084
|
||||||
rpc-timeout = 15
|
rpc-timeout = 15
|
||||||
idle-timeout = 120
|
idle-timeout = 150
|
||||||
pool-wallet = 9y4V6rSRbXDhmoNQpCrDBQXFM25rqFBZYBq8RepazSLSBwsj5kRtuM9iCSuz3vs9KbfZhrQj1BKRxVCpyqii7pca3vJaNFs
|
pool-wallet = 9y4V6rSRbXDhmoNQpCrDBQXFM25rqFBZYBq8RepazSLSBwsj5kRtuM9iCSuz3vs9KbfZhrQj1BKRxVCpyqii7pca3vJaNFs
|
||||||
pool-fee-wallet =
|
pool-fee-wallet =
|
||||||
pool-start-diff = 1000
|
pool-start-diff = 1000
|
||||||
|
@ -15,7 +15,7 @@ pool-fixed-diff = 0
|
||||||
pool-fee = 0.01
|
pool-fee = 0.01
|
||||||
payment-threshold = 0.33
|
payment-threshold = 0.33
|
||||||
share-mul = 2.0
|
share-mul = 2.0
|
||||||
retarget-time = 120
|
retarget-time = 30
|
||||||
retarget-ratio = 0.55
|
retarget-ratio = 0.55
|
||||||
log-level = 5
|
log-level = 5
|
||||||
log-file =
|
log-file =
|
||||||
|
|
|
@ -3609,10 +3609,10 @@ read_config(const char *config_file)
|
||||||
strcpy(config.rpc_host, "127.0.0.1");
|
strcpy(config.rpc_host, "127.0.0.1");
|
||||||
config.rpc_port = 18081;
|
config.rpc_port = 18081;
|
||||||
config.rpc_timeout = 15;
|
config.rpc_timeout = 15;
|
||||||
config.idle_timeout = BLOCK_TIME;
|
config.idle_timeout = 150;
|
||||||
config.pool_start_diff = 100;
|
config.pool_start_diff = 1000;
|
||||||
config.share_mul = 2.0;
|
config.share_mul = 2.0;
|
||||||
config.retarget_time = 120;
|
config.retarget_time = 30;
|
||||||
config.retarget_ratio = 0.55;
|
config.retarget_ratio = 0.55;
|
||||||
config.pool_fee = 0.01;
|
config.pool_fee = 0.01;
|
||||||
config.payment_threshold = 0.33;
|
config.payment_threshold = 0.33;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue