Git Product home page Git Product logo

Comments (2)

johnrando avatar johnrando commented on June 23, 2024

i have this in my logs as well.

Google says that it's an error caused by trying to use the += operator on a PSObject array.

The text "Starting Cycle" is in Core.ps1 at Line 194. The nearest occurrence of += is on Line 315:

$PoolFilter = @()
$Config.PoolName | foreach {$PoolFilter+=($_+=".*")}

from nplusminer.

jchoover avatar jchoover commented on June 23, 2024

But the line before is...

$Variables.StatusText = "Loading pool stats.." $PoolFilter = @() $Config.PoolName | foreach {$PoolFilter+=($_+=".*")} Do { $Tries++ $AllPools = if(Test-Path "Pools"){[System.Collections.ArrayList]::Synchronized(@(Get-SubScriptContent "Pools" -Include $PoolFilter)).Where({$_.Content -ne $Null}) | ForEach {$_.Content | Add-Member @{Name = $_.Name} -PassThru} | Where { $_.SSL -EQ $Config.SSL -and ($Config.PoolName.Count -eq 0 -or ($_.Name -in $Config.PoolName)) -and (!$Config.Algorithm -or ((!($Config.AlgoInclude) -or $_.Algorithm -in $Config.AlgoInclude) -and (!($Config.AlgoExclude) -or $_.Algorithm -notin $Config.AlgoExclude))) } } if ($AllPools.Count -eq 0) { $Variables.StatusText = "Waiting for pool data. retrying in 30 seconds.." Sleep 30 } } While ($AllPools.Count -eq 0 -and $Tries -le 3) $Tries = 0 $Variables.StatusText = "Computing pool stats.."

And we have:

`Starting Cycle
Method invocation failed because [System.Management.Automation.PSObject] does not contain a method named 'op_Addition'.
+ CategoryInfo : InvalidOperation: (op_Addition:String) [], RuntimeException
+ FullyQualifiedErrorId : MethodNotFound
+ PSComputerName : localhost

Method invocation failed because [System.Management.Automation.PSObject] does not contain a method named 'op_Addition'.
+ CategoryInfo : InvalidOperation: (op_Addition:String) [], RuntimeException
+ FullyQualifiedErrorId : MethodNotFound
+ PSComputerName : localhost

Loading currencies rate from 'api.coinbase.com'..
Loading pool stats..
Computing pool stats..
Loading miners..`

from nplusminer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.