File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 3232 - uses : actions/checkout@v4
3333 - uses : golangci/golangci-lint-action@v6
3434 with :
35- version : v1.56.1
35+ version : v1.62.2
3636 check_mockgen :
3737 name : Up-to-date mocks
3838 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ linters-settings:
120120 gosec :
121121 excludes :
122122 - G107 # Url provided to HTTP request as taint input https://securego.io/docs/rules/g107
123+ - G115 # TODO: use typesafe conversion for uint64 -> int64
123124 importas :
124125 # Do not allow unaliased imports of aliased packages.
125126 no-unaliased : false
Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ func TestImportTxConstruction(t *testing.T) {
394394 unsignedImportTx := "0x000000000011000000050000000000000000000000000000000000000000000000000000000000000000000000013d9bdac0ed1d761330cf680efdeb1a42159eb387d6d2950c96f7d28f61bbe2aa00000007000000003b8b87c0000000000000000000000001000000015445cd01d75b4a06b6b41939193c0b1c5544490d00000000000000007fc93d85c6d62c5b2ac0b519c87010ea5294012d1e407030d6acd0021cac10d500000001f52a5a6dd8f1b3fe05204bdab4f6bcb5a7059f88d0443c636f6c158f838dd1a8000000003d9bdac0ed1d761330cf680efdeb1a42159eb387d6d2950c96f7d28f61bbe2aa00000005000000003b9aca000000000100000000000000004ce8b27d"
395395 unsignedImportTxHash , err := hex .DecodeString ("e9114ae12065d1f8631bc40729c806a3a4793de714001bfee66482f520dc1865" )
396396 require .NoError (t , err )
397- wrappedUnsignedImportTx := `{"tx":"` + unsignedImportTx + `","signers":` + importSigners + `}` //nolint:goconst
397+ wrappedUnsignedImportTx := `{"tx":"` + unsignedImportTx + `","signers":` + importSigners + `}`
398398
399399 signingPayloads := []* types.SigningPayload {
400400 {
You can’t perform that action at this time.
0 commit comments