Skip to content

Commit

Permalink
Bugfix: Changed profit switch to check pools file on each check, Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Heynes committed Nov 7, 2018
1 parent bf5a70a commit 94f73f9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 4.4.11
Release Date 2018-11-06
Changes
Bugfix: Changed profit switch to check pools file on each check, Fixed

Version 4.4.11
Release Date 2018-11-06
Changes
Expand Down
16 changes: 9 additions & 7 deletions JJs_HashMonitor_mutley.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $startattempt = 0

Function Run-Miner {
do {
$ver = '4.4.11'
$ver = '4.4.12'
$debug = $false
#$verbosePreferenc='Continue'
$script:VerbosePreferenceDefault = 'silentlyContinue'
Expand Down Expand Up @@ -2015,12 +2015,14 @@ Function Run-Miner {
}
else {
if( ( $profitLiveCheckingEnabled -eq 'True' ) -and ($profitSwitching -eq 'True' ) ) {
refreshSTAK
foreach( $pool in $script:PoolsList.Keys ) {
if( $script:PoolsList.$pool.address |
sls "$( $script:ConnectedPool )" -ErrorAction SilentlyContinue ) {
#( ($script:PoolsList[ $pool ] ).address. $script:ConnectedPool ) {
Check-Profit-Stats @($pool) $script:minhashrate
if (read-Pools-File) {
refreshSTAK
foreach( $pool in $script:PoolsList.Keys ) {
if( $script:PoolsList.$pool.address |
sls "$( $script:ConnectedPool )" -ErrorAction SilentlyContinue ) {
#( ($script:PoolsList[ $pool ] ).address. $script:ConnectedPool ) {
Check-Profit-Stats @($pool) $script:minhashrate
}
}
}

Expand Down

0 comments on commit 94f73f9

Please sign in to comment.