Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: "1.24.0"
go-version: "1.24"
id: go

- name: Check out code into the Go module directory
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: "1.24.0"
go-version: "1.24"
id: go

- name: Check out code into the Go module directory
Expand All @@ -59,7 +59,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.24.0"
go-version: "1.24"
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-mod-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.24"
id: go

- name: Generate token # generate a token to trigger the rest of the CI tasks... https://github.com/tibdex/github-app-token
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/iotago-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.24'

- name: Test
run: |
cd clients/iota-go
go test -v ./...

4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/iotaledger/wasp/v2

go 1.23.8
go 1.24

toolchain go1.24.3
toolchain go1.24.7

replace (
github.com/ethereum/go-ethereum => github.com/iotaledger/go-ethereum v1.16.2-wasp
Expand Down
3 changes: 2 additions & 1 deletion packages/isc/vmerror.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ func (e *VMErrorTemplate) Create(params ...VMErrorParam) *VMError {
// VMErrorTemplate by mistake, so that we don't crash the VM because of that.
func (e *VMErrorTemplate) Error() string {
// calling Sprintf so that it marks missing parameters as errors
return fmt.Sprintf(e.messageFormat)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This won't be compilable anymore.

var noargs []any
return fmt.Sprintf(e.messageFormat, noargs...)
}

func (e *VMErrorTemplate) MessageFormat() string {
Expand Down
2 changes: 1 addition & 1 deletion tools/evm/evmemulator/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/iotaledger/wasp/v2/tools/evm/evmemulator

go 1.24.2

toolchain go1.24.4
toolchain go1.24.7

replace (
github.com/ethereum/go-ethereum => github.com/iotaledger/go-ethereum v1.16.2-wasp
Expand Down
4 changes: 2 additions & 2 deletions tools/gendoc/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/iotaledger/wasp/v2/tools/gendoc

go 1.23.8
go 1.24

toolchain go1.24.4
toolchain go1.24.7

replace (
github.com/ethereum/go-ethereum => github.com/iotaledger/go-ethereum v1.16.2-wasp
Expand Down
2 changes: 1 addition & 1 deletion tools/wasp-cli/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/iotaledger/wasp/v2/tools/wasp-cli

go 1.24.2

toolchain go1.24.3
toolchain go1.24.7

replace (
github.com/ethereum/go-ethereum => github.com/iotaledger/go-ethereum v1.16.2-wasp
Expand Down
Loading