Closed borzaka closed 6 years ago
It's still an issue with the latest master.
Try to do a clean setup, and you will see.
i did try clean setup... im not getting that issue..
Run NemosMiner-v3.1.bat
@nemosminer I just made a video for you: https://www.dropbox.com/s/laiz7uvlgtxzn8z/2018-04-25_09-22-54.mp4?dl=0
Please, have a look. I hope it helps.
Could you try to comment the following line in Core.ps1 and report if that fixes the issue?
# Remove miners when no estimation info from pools. Avoids mining when algo down at pool or benchmarking for ever
$Variables.Miners = $Variables.Miners | ? {$_.Pools.PSObject.Properties.Value.Price -ne $null}
Then replace with
If (($Variables.Miners | ? {$_.Pools.PSObject.Properties.Value.Price -ne $null}).Count -gt 0) {$Variables.Miners = $Variables.Miners | ? {$_.Pools.PSObject.Properties.Value.Price -ne $null}}
Unfortunately no, it doesn't fixes the issue. At the very first run it still has many PowerShell errors, and no miners message until the first interval, or a restart.
No Miners!
Get-Member : You must specify an object for the Get-Member cmdlet.
At C:\Users\Attila\Downloads\NemosMiner-master_first_run_test\Core-v3.1.ps1:238 char:28
+ ... $Miner.HashRates | Get-Member -MemberType NoteProperty | Selec ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Get-Member], InvalidOperationException
+ FullyQualifiedErrorId : NoObjectInGetMember,Microsoft.PowerShell.Commands.GetMemberCommand
Get-Member : You must specify an object for the Get-Member cmdlet.
The property 'HashRates' cannot be found on this object. Verify that the property exists and can be set.
At C:\Users\Attila\Downloads\NemosMiner-master_first_run_test\Core-v3.1.ps1:264 char:9
+ $Miner.HashRates = $Miner_HashRates
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
Add-Member : Cannot bind argument to parameter 'InputObject' because it is null.
At C:\Users\Attila\Downloads\NemosMiner-master_first_run_test\Core-v3.1.ps1:265 char:18
+ $Miner | Add-Member Pools $Miner_Pools
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidData: (:) [Add-Member], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Microsoft.PowerShell.Commands.AddMemberComm
and
Thanks for testing
I have done everything what was in the readme: 1, start .bat 2, Config tab, edit stuff 3, close 4, start .bat 5, press start button
This is my log after the first run: miner_first_run.log
After closing, and starting again everything worked, benchmark started.
Latest (downloaded today) master.