Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/go_modules/github.com/prometheus/…
Browse files Browse the repository at this point in the history
…common-0.60.1
  • Loading branch information
julienrbrt authored Oct 25, 2024
2 parents 52c4cb0 + 49e1bc2 commit 2910468
Show file tree
Hide file tree
Showing 32 changed files with 3,298 additions and 639 deletions.
17 changes: 17 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,23 @@ if err != nil {
}
```

##### TX Decoder

In order to support x/accounts properly we need to init a `TxDecoder`, modify your `app.go`:

```diff
import (
+ txdecode "cosmossdk.io/x/tx/decode"
)
+ txDecoder, err := txdecode.NewDecoder(txdecode.Options{
+ SigningContext: signingCtx,
+ ProtoCodec: appCodec,
+ })
+ if err != nil {
+ panic(err)
+ }
```

#### `x/crisis`

The `x/crisis` module was removed due to it not being supported or functional any longer.
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit 2910468

Please sign in to comment.