Skip to content

Commit b5a092f

Browse files
committed
feat nv25
1 parent b6ed3dc commit b5a092f

File tree

17 files changed

+1949
-986
lines changed

17 files changed

+1949
-986
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
executors:
77
golang:
88
docker:
9-
- image: cimg/go:1.22.3
9+
- image: cimg/go:1.23.7
1010
resource_class: 2xlarge
1111
ubuntu:
1212
docker:
@@ -87,7 +87,7 @@ jobs:
8787
lid-docker-compose:
8888
description: 'Run LID integration tests'
8989
docker:
90-
- image: cimg/go:1.22 # Primary container to run Go tests
90+
- image: cimg/go:1.23.7 # Primary container to run Go tests
9191
environment:
9292
YUGABYTE_HOST: yugabyte
9393
- image: yugabytedb/yugabyte:2024.1.3.0-b105 # Service container for YugabyteDB
@@ -172,7 +172,7 @@ jobs:
172172
linux: false
173173
darwin: true
174174
- golang/install:
175-
version: "1.22.3"
175+
version: "1.23.7"
176176
- run:
177177
name: Install pkg-config
178178
command: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- main
1010

1111
env:
12-
GO_VERSION: 1.22.3
12+
GO_VERSION: 1.23.7
1313

1414
jobs:
1515
ci-lint:

cmd/boost/wallet_cmd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ var walletBalance = &cli.Command{
303303
}
304304
return cmd.PrintJson(out)
305305
} else {
306-
afmt.Printf(fmt.Sprintf("%s (warning: %s)\n", types.FIL(balance), warningMessage))
306+
afmt.Printf("%s", fmt.Sprintf("%s (warning: %s)\n", types.FIL(balance), warningMessage))
307307
}
308308
} else {
309309
if cctx.Bool("json") {

cmd/boostd/init.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ func initBoost(ctx context.Context, cctx *cli.Context, marketsRepo lotus_repo.Lo
218218
if !v.APIVersion.EqMajorMinor(lapi.FullAPIVersion1) {
219219
msg := fmt.Sprintf("Remote API version didn't match (expected %s, remote %s)",
220220
lapi.FullAPIVersion1, v.APIVersion)
221-
return nil, fmt.Errorf(msg + ". Boost and Lotus Daemon must have the same API version")
221+
return nil, fmt.Errorf("%s. Boost and Lotus Daemon must have the same API version", msg)
222222
}
223223

224224
fmt.Println("Creating boost repo")

0 commit comments

Comments
 (0)