Skip to content

Commit

Permalink
fix: do not use custom args in simple mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrix126 committed Oct 1, 2024
1 parent 881fa56 commit eff8573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helper/xrig/xmrig_proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl Helper {
let ip;
let port;
// custom args from user input
if !state.arguments.is_empty() {
if !state.arguments.is_empty() && !state.simple {
args.push(state.arguments.clone());
return args;
}
Expand Down

0 comments on commit eff8573

Please sign in to comment.