Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(deps): new genesis-bridge flow and rollappparams upgrade fix #183

Merged
merged 2 commits into from
Dec 10, 2024
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
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ func NewRollapp(
app.AccountKeeper,
app.BankKeeper,
app.MintKeeper,
app.IBCKeeper.ChannelKeeper,
)

app.HubKeeper = hubkeeper.NewKeeper(
Expand Down Expand Up @@ -598,7 +599,6 @@ func NewRollapp(
transferStack,
app.HubGenesisKeeper,
app.BankKeeper,
app.IBCKeeper.ChannelKeeper,
)

app.CallbackKeeper = callbackKeeper.NewKeeper(
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require (
github.com/cosmos/gogoproto v1.5.0
github.com/cosmos/ibc-go/v6 v6.3.0
github.com/dvsekhvalnov/jose2go v1.5.0
github.com/dymensionxyz/dymension-rdk v1.6.1-0.20241209135702-6e0296bf3b2c
github.com/dymensionxyz/dymension-rdk v1.6.1-0.20241210201220-3d910ef66fc5
github.com/dymensionxyz/dymint v1.2.0-rc01.0.20241208124948-7de4e892a304
github.com/ethereum/go-ethereum v1.12.0
github.com/evmos/evmos/v12 v12.1.6
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,8 @@ github.com/dymensionxyz/cosmosclient v0.4.2-beta.0.20241121093220-e0d7ad456fbd h
github.com/dymensionxyz/cosmosclient v0.4.2-beta.0.20241121093220-e0d7ad456fbd/go.mod h1:3weqpVj/TqTFpC0LjEB3H+HZSpm7BrQ1QkEg1Ahy6KY=
github.com/dymensionxyz/dymension-rdk v1.6.1-0.20241209135702-6e0296bf3b2c h1:KSmfxQX0L3WPVg8VN9ZL4baxdqYOZT2QIjIteh0Egfw=
github.com/dymensionxyz/dymension-rdk v1.6.1-0.20241209135702-6e0296bf3b2c/go.mod h1:L6vBXdlUPxHFUz3kjWwXdOun0uX3SrsD9KkpxWQkUy4=
github.com/dymensionxyz/dymension-rdk v1.6.1-0.20241210201220-3d910ef66fc5 h1:7r4r/PVzeuQGod1yB/VuSkZKj2oJ9J6RHBsPQj1I/0k=
github.com/dymensionxyz/dymension-rdk v1.6.1-0.20241210201220-3d910ef66fc5/go.mod h1:L6vBXdlUPxHFUz3kjWwXdOun0uX3SrsD9KkpxWQkUy4=
github.com/dymensionxyz/dymint v1.2.0-rc01.0.20241208124948-7de4e892a304 h1:qkjoXhCOOVsSpjQ2dOVlyw4vPWdsdCmIZM5jqnOpw6o=
github.com/dymensionxyz/dymint v1.2.0-rc01.0.20241208124948-7de4e892a304/go.mod h1:C3VbfePK85aRCdA1iHzB2AYD+n1gKR9Pw+wm3wQUXvE=
github.com/dymensionxyz/evmos/v12 v12.1.6-dymension-v0.4.2 h1:aVP3off7u2vsvRH7lHAUPTLdf9/AfnzC/rvvi0wC/co=
Expand Down
Loading