mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-23 07:09:23 +00:00
fix: take custom input args for xmrig-proxy into account
This commit is contained in:
parent
2c1f5b88cc
commit
81f70013cb
1 changed files with 5 additions and 1 deletions
|
@ -112,7 +112,11 @@ impl Helper {
|
||||||
let api_port;
|
let api_port;
|
||||||
let ip;
|
let ip;
|
||||||
let port;
|
let port;
|
||||||
|
// custom args from user input
|
||||||
|
if !state.arguments.is_empty() {
|
||||||
|
args.push(state.arguments.clone());
|
||||||
|
return args;
|
||||||
|
}
|
||||||
// [Simple]
|
// [Simple]
|
||||||
if state.simple {
|
if state.simple {
|
||||||
// Build the xmrig argument
|
// Build the xmrig argument
|
||||||
|
|
Loading…
Reference in a new issue