Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kingpinXD committed Jan 10, 2025
1 parent 2ed02a9 commit acf9793
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

### Unreleases

### Refactor

* [3326](https://github.com/zeta-chain/node/pull/3326) - improve error messages for cctx status object

## v25.0.0

### Features
Expand Down
6 changes: 5 additions & 1 deletion x/fungible/types/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ var (
ErrZeroAddress = cosmoserrors.Register(ModuleName, 1133, "address cannot be zero")
ErrInvalidAmount = cosmoserrors.Register(ModuleName, 1134, "invalid amount")
ErrMaxSupplyReached = cosmoserrors.Register(ModuleName, 1135, "max supply reached")
ErrCallEvmWithData = cosmoserrors.Register(ModuleName, 1136, "contract call failed when calling EVM with data")
ErrCallEvmWithData = cosmoserrors.Register(
ModuleName,
1136,
"contract call failed when calling EVM with data",
)
ErrDepositZetaToEvmAccount = cosmoserrors.Register(
ModuleName,
1137,
Expand Down

0 comments on commit acf9793

Please sign in to comment.