Skip to content

Commit

Permalink
pr review refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
sekulicd committed Oct 18, 2024
1 parent 056b396 commit ee4e34b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# First image used to build the sources
FROM golang:1.23.2 AS builder
FROM golang:1.23.1 AS builder

ARG VERSION
ARG TARGETOS
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.23.2
go 1.23.1

use (
./api-spec
Expand Down
2 changes: 1 addition & 1 deletion simulation/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ark-network/ark/simulation

go 1.23.2
go 1.23.1

require (
github.com/sirupsen/logrus v1.9.3
Expand Down
4 changes: 2 additions & 2 deletions simulation/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func main() {
log.Fatal(err)
}

log.Infof("start building ARKD docker container ...")
log.Infof("Start building ARKD docker container ...")
if _, err := utils.RunCommand("docker", "compose", "-f", composePath, "--env-file", tmpfile.Name(), "up", "-d", "--build"); err != nil {
log.Fatal(err)
}
Expand Down Expand Up @@ -117,7 +117,7 @@ func main() {
}
wg.Wait()

log.Infof("client wallets initialized")
log.Infof("Client wallets initialized")

for _, round := range simulation.Rounds {
log.Infof("Executing Round %d\n", round.Number)
Expand Down

0 comments on commit ee4e34b

Please sign in to comment.