Skip to content

Commit

Permalink
Corrected switch statement in do_session
Browse files Browse the repository at this point in the history
  • Loading branch information
Tritonn204 committed Apr 28, 2024
1 parent 34f665d commit 8023d4a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/miner/miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -700,8 +700,12 @@ void do_session(
switch(algo) {
case DERO_HASH:
dero_session(host, port, wallet, ioc, ctx, yield, isDev);
break;
case XELIS_HASH:
{
xelis_session(host, port, wallet, worker, ioc, yield, isDev);
break;
}
}
}

Expand Down

0 comments on commit 8023d4a

Please sign in to comment.