Skip to content

Commit

Permalink
bumped version to v0.9.32 to prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
felix314159 committed Nov 21, 2024
1 parent a510ba0 commit 95a3592
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions block/simpar/simpar.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ func (s SimulationTask) RunSimulation() ([]byte, hash.Hash, error) {

// try to run simulation
cmd := exec.Command("bash", "-c", "cd ./simdata && " + simCommand + " >> /dev/null 2>&1")
_, err := cmd.CombinedOutput()
errorDescription, err := cmd.CombinedOutput()
if err != nil {
logger.L.Printf("Error: %v", err)
logger.L.Printf("Error: %v\n%v", err, errorDescription)
return nil, hash.Hash{}, fmt.Errorf("RunSimulation - Failed to run simulation command: %v\n", err)
}
logger.L.Printf("%v: Successfully solved problem #%v/%v\n---\n", GetTime(), pIndex, s.SimHeader.AmountSubProblems-1)
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (
// */
)

const version = "v0.9.31"
const version = "v0.9.32"

// Example RA Node ID: 12D3KooWEYSb69dzeojEH1PygPWef9V1qQJqrGKUEMMsbA4keAyZ

Expand Down

0 comments on commit 95a3592

Please sign in to comment.