From 05c85b9352ccf7e8dcc33d1cfd5cf856b23b12ed Mon Sep 17 00:00:00 2001 From: Ji Hwan Date: Wed, 14 Aug 2024 14:07:50 +0900 Subject: [PATCH 1/2] fix: add nolint to pass (breaking) ci Signed-off-by: Ji Hwan --- cmd/ulxly/ulxly.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/ulxly/ulxly.go b/cmd/ulxly/ulxly.go index 53451250..06efa836 100644 --- a/cmd/ulxly/ulxly.go +++ b/cmd/ulxly/ulxly.go @@ -592,6 +592,7 @@ func (s *IMT) GetRoot(depositNum uint32) common.Hash { // GetProof will return an object containing the proof data necessary for verification func (s *IMT) GetProof(depositNum uint32) Proof { node := common.Hash{} + // nolint:staticcheck // SA4006 ignore this! sibling := common.Hash{} size := depositNum + 1 currentZeroHashHeight := common.Hash{} From f8f4d76f842311fbf2ff1daf2ac4c629b134d4db Mon Sep 17 00:00:00 2001 From: Ji Hwan Date: Wed, 14 Aug 2024 15:12:39 +0900 Subject: [PATCH 2/2] chore: remove gen-ulxly-go-bindings from make Signed-off-by: Ji Hwan --- contracts/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/Makefile b/contracts/Makefile index b551322b..ba171add 100644 --- a/contracts/Makefile +++ b/contracts/Makefile @@ -58,4 +58,4 @@ gen-ulxly-go-bindings: .PHONY: gen-go-bindings -gen-go-bindings: build gen-funder-go-bindings gen-tester-go-bindings gen-tokens-go-bindings gen-ulxly-go-bindings ## Generate go bindings. +gen-go-bindings: build gen-funder-go-bindings gen-tester-go-bindings gen-tokens-go-bindings ## Generate go bindings.