Skip to content

Commit

Permalink
Merge branch 'main' into akhil/remove-e2e-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilkumarpilli committed Oct 25, 2024
2 parents 1ac3115 + aa4614e commit 94ddce5
Show file tree
Hide file tree
Showing 29 changed files with 3,281 additions and 407 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 94ddce5

Please sign in to comment.