Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

import (
_ "embed"
"io"

dbm "github.com/cosmos/cosmos-db"
"io"

"cosmossdk.io/core/appconfig"
"cosmossdk.io/depinject"
Expand All @@ -31,7 +30,8 @@
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"

appv1alpha1 "cosmossdk.io/api/cosmos/app/v1alpha1"
_ "cosmossdk.io/api/cosmos/tx/config/v1" // import for side-effects
_ "cosmossdk.io/api/cosmos/tx/config/v1" // import for side-effects
_ "github.com/bitcolibri/birdFeed/module"

Check failure on line 34 in app/app.go

View workflow job for this annotation

GitHub Actions / test-minid

missing go.sum entry for module providing package github.com/bitcolibri/birdFeed/module (imported by github.com/cosmosregistry/chain-minimal/app); to add:
_ "github.com/cosmos/cosmos-sdk/x/auth" // import for side-effects
_ "github.com/cosmos/cosmos-sdk/x/auth/tx/config" // import for side-effects
_ "github.com/cosmos/cosmos-sdk/x/bank" // import for side-effects
Expand Down
5 changes: 4 additions & 1 deletion app/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ modules:
end_blockers: [staking]
# NOTE: The genutils module must occur after staking so that pools are properly initialized with tokens from genesis accounts.
# NOTE: The genutils module must also occur after auth so that it can access the params from auth.
init_genesis: [auth, bank, distribution, staking, genutil]
init_genesis: [auth, bank, distribution, staking, genutil, birdFeed]
override_store_keys:
- module_name: auth
kv_store_key: acc
Expand Down Expand Up @@ -45,3 +45,6 @@ modules:
- name: tx
config:
"@type": cosmos.tx.config.v1.Config
- name: birdFeed
config:
"@type": bitcolibri.birdFeed.module.v1.Module
5 changes: 4 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/cosmosregistry/chain-minimal

go 1.23
go 1.23.2

toolchain go1.23.6

replace (
// Fix upstream GHSA-h395-qcrw-5vmq vulnerability.
Expand All @@ -20,6 +22,7 @@ require (
cosmossdk.io/math v1.5.0
cosmossdk.io/store v1.1.1
cosmossdk.io/tools/confix v0.1.2
github.com/bitcolibri/birdFeed v0.0.1
github.com/cometbft/cometbft v0.38.17
github.com/cosmos/cosmos-db v1.1.1
github.com/cosmos/cosmos-sdk v0.50.12
Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 h1:41iFGWnSlI2gVpmOtVTJZNodLdLQLn/KsJqFvXwnd/s=
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
github.com/bitcolibri/birdFeed v0.0.1/go.mod h1:C1KqlFixiGKxHwbrJ5zsgbBX+mWSyr8auuN6IEcmkSk=
github.com/bits-and-blooms/bitset v1.8.0 h1:FD+XqgOZDUxxZ8hzoBFuV9+cGWY9CslN6d5MS5JVb4c=
github.com/bits-and-blooms/bitset v1.8.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8=
github.com/btcsuite/btcd/btcec/v2 v2.3.4 h1:3EJjcN70HCu/mwqlUsGK8GcNVyLVxFDlWurTXGPFfiQ=
Expand Down
Loading