Skip to content

Commit

Permalink
go
Browse files Browse the repository at this point in the history
  • Loading branch information
sesheffield committed Jul 25, 2024
1 parent 6848324 commit 4822366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,6 @@ func NewApp(
app.stakingKeeper,
&app.distrKeeper,
)

savingsKeeper := savingskeeper.NewKeeper(
appCodec,
keys[savingstypes.StoreKey],
Expand All @@ -685,6 +684,7 @@ func NewApp(
app.bankKeeper,
app.liquidKeeper,
)

earnKeeper := earnkeeper.NewKeeper(
appCodec,
keys[earntypes.StoreKey],
Expand Down

0 comments on commit 4822366

Please sign in to comment.