From de08dc4288c251d80ac9a2a218bab21614d588ea Mon Sep 17 00:00:00 2001 From: Marko Date: Thu, 16 Jul 2020 10:38:29 +0200 Subject: [PATCH] bump versiion of ci linter fix (#6743) --- .github/workflows/lint.yml | 2 +- x/staking/simulation/genesis_test.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b938bef5ef..d87fd0df2c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: - uses: golangci/golangci-lint-action@master with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.28.3 + version: v1.28 args: --timeout 10m github-token: ${{ secrets.github_token }} if: "env.GIT_DIFF != ''" diff --git a/x/staking/simulation/genesis_test.go b/x/staking/simulation/genesis_test.go index 4830ede133..7d8d8feaa6 100644 --- a/x/staking/simulation/genesis_test.go +++ b/x/staking/simulation/genesis_test.go @@ -22,10 +22,10 @@ func TestRandomizedGenState(t *testing.T) { r := rand.New(s) simState := module.SimulationState{ - AppParams: make(simtypes.AppParams), - Cdc: cdc, - Rand: r, - NumBonded: 3, + AppParams: make(simtypes.AppParams), + Cdc: cdc, + Rand: r, + NumBonded: 3, Accounts: simtypes.RandomAccounts(r, 3), InitialStake: 1000, GenState: make(map[string]json.RawMessage),