Skip to content

Commit

Permalink
fix: Add amino codec for MsgBridge (release/v4.1.x) (#1508)
Browse files Browse the repository at this point in the history
* fix: add amino registration for MsgBridge

* Apply suggestions from code review
  • Loading branch information
clevinson authored Sep 29, 2022
1 parent a760065 commit 62391a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v4.1.0](https://github.com/regen-network/regen-ledger/releases/tag/v4.1.0) - 2022-09-29
## [v4.1.1](https://github.com/regen-network/regen-ledger/releases/tag/v4.1.1) - 2022-09-29

### General

Expand All @@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

#### State Machine Breaking

- [#1483](https://github.com/regen-network/regen-ledger/pull/1483), [#1502](https://github.com/regen-network/regen-ledger/pull/1502) Fix amino codec registration for all ecocredit msgs
- [#1483](https://github.com/regen-network/regen-ledger/pull/1483), [#1502](https://github.com/regen-network/regen-ledger/pull/1502), [#1508](https://github.com/regen-network/regen-ledger/pull/1508) Fix amino codec registration for all ecocredit msgs

## [v4.0.1](https://github.com/regen-network/regen-ledger/releases/tag/v4.0.1) - 2022-08-30

Expand Down
1 change: 1 addition & 0 deletions x/ecocredit/core/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgUpdateProjectMetadata{}, "regen.core/MsgUpdateProjectMetadata", nil)
cdc.RegisterConcrete(&CreditTypeProposal{}, "regen.core/CreditTypeProposal", nil)
cdc.RegisterConcrete(&MsgBridgeReceive{}, "regen.core/MsgBridgeReceive", nil)
cdc.RegisterConcrete(&MsgBridge{}, "regen.core/MsgBridge", nil)
}

var (
Expand Down

0 comments on commit 62391a6

Please sign in to comment.