From 482236615e4d06a59d6f18db52e1a6a5c7f06d04 Mon Sep 17 00:00:00 2001 From: Sam Sheffield Date: Thu, 25 Jul 2024 13:51:38 -0400 Subject: [PATCH] go --- .github/workflows/ci-lint.yml | 2 +- app/app.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 53a8bd153e..ce8ccd7ca7 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -38,7 +38,7 @@ jobs: echo "$changed_files" # Prepare arguments for golangci-lint # Filter only Go files - go_files=$(echo "$changed_files" | grep '\.go$' | tr '\n' ' ') + go_files=$(find . -name '*.go' -print | tr '\n' ' ') echo "go_files=$go_files" >> $GITHUB_ENV - name: golangci-lint diff --git a/app/app.go b/app/app.go index 35ab87a290..d04086c913 100644 --- a/app/app.go +++ b/app/app.go @@ -676,7 +676,6 @@ func NewApp( app.stakingKeeper, &app.distrKeeper, ) - savingsKeeper := savingskeeper.NewKeeper( appCodec, keys[savingstypes.StoreKey], @@ -685,6 +684,7 @@ func NewApp( app.bankKeeper, app.liquidKeeper, ) + earnKeeper := earnkeeper.NewKeeper( appCodec, keys[earntypes.StoreKey],