diff --git a/src/config.json b/src/config.json index 53df54868..c5ae06767 100644 --- a/src/config.json +++ b/src/config.json @@ -1,9 +1,14 @@ { - "algo": "cryptonight", "api": { "id": null, "worker-id": null }, + "autosave": true, + "background": false, + "colors": true, + "cpu": null, + "donate-level": 5, + "donate-over-proxy": 1, "http": { "enabled": false, "host": "127.0.0.1", @@ -11,41 +16,26 @@ "access-token": null, "restricted": true }, - "asm": true, - "autosave": true, - "av": 0, - "background": false, - "colors": true, - "cpu-affinity": null, - "cpu-priority": null, - "donate-level": 5, - "donate-over-proxy": 1, - "huge-pages": true, - "hw-aes": null, "log-file": null, - "max-cpu-usage": 100, "pools": [ { + "algo": null, "url": "donate.v2.xmrig.com:3333", "user": "YOUR_WALLET_ADDRESS", "pass": "x", "rig-id": null, "nicehash": false, "keepalive": false, - "variant": -1, "enabled": true, "tls": false, "tls-fingerprint": null, - "daemon": false, - "daemon-poll-interval": 1000 + "daemon": false } ], "print-time": 60, "retries": 5, "retry-pause": 5, - "safe": false, - "threads": null, - "user-agent": null, "syslog": false, + "user-agent": null, "watch": true } \ No newline at end of file diff --git a/src/core/config/Config_default.h b/src/core/config/Config_default.h index d6145cf4c..2ca0bda58 100644 --- a/src/core/config/Config_default.h +++ b/src/core/config/Config_default.h @@ -33,11 +33,16 @@ namespace xmrig { const static char *default_config = R"===( { - "algo": "cryptonight", "api": { "id": null, "worker-id": null }, + "autosave": true, + "background": false, + "colors": true, + "cpu": null, + "donate-level": 5, + "donate-over-proxy": 1, "http": { "enabled": false, "host": "127.0.0.1", @@ -45,42 +50,27 @@ R"===( "access-token": null, "restricted": true }, - "asm": true, - "autosave": true, - "av": 0, - "background": false, - "colors": true, - "cpu-affinity": null, - "cpu-priority": null, - "donate-level": 5, - "donate-over-proxy": 1, - "huge-pages": true, - "hw-aes": null, "log-file": null, - "max-cpu-usage": 100, "pools": [ { + "algo": null, "url": "donate.v2.xmrig.com:3333", "user": "YOUR_WALLET_ADDRESS", "pass": "x", "rig-id": null, "nicehash": false, "keepalive": false, - "variant": -1, "enabled": true, "tls": false, "tls-fingerprint": null, - "daemon": false, - "daemon-poll-interval": 1000 + "daemon": false } ], "print-time": 60, "retries": 5, "retry-pause": 5, - "safe": false, - "threads": null, - "user-agent": null, "syslog": false, + "user-agent": null, "watch": true } )===";