File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed
rpc/namespaces/ethereum/debug
tests/integration/x/precisebank Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ linters:
6363 - legacy
6464 - std-error-handling
6565 rules :
66+ - linters :
67+ - revive
68+ text : avoid meaningless package names
6669 - linters :
6770 - gosec
6871 text : Use of weak random number generator
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ benchmark:
209209# ## Linting ###
210210# ##############################################################################
211211golangci_lint_cmd =golangci-lint
212- golangci_version =v2.1.6
212+ golangci_version =v2.2.2
213213
214214lint : lint-go lint-python lint-contracts
215215
Original file line number Diff line number Diff line change 1414// You should have received a copy of the GNU Lesser General Public License
1515// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616
17- //go:build go1.5
18- // +build go1.5
19-
2017package debug
2118
2219import (
Original file line number Diff line number Diff line change @@ -866,7 +866,6 @@ func FuzzSendCoins(f *testing.F) {
866866func blockedAddresses () map [string ]bool {
867867 blockedAddrs := make (map [string ]bool )
868868
869- maps .Clone (maccPerms )
870869 maccPerms := getMaccPerms ()
871870 accs := make ([]string , 0 , len (maccPerms ))
872871 for acc := range maccPerms {
You can’t perform that action at this time.
0 commit comments