Skip to content

Commit

Permalink
fix typo in ibc lifecycle message (#6767)
Browse files Browse the repository at this point in the history
* fix type in message

* changelog
  • Loading branch information
faboweb authored Nov 3, 2023
1 parent ed031e3 commit 79b0f11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [#6692](https://github.com/osmosis-labs/osmosis/pull/6692) chore: add cur sqrt price to LiquidityNetInDirection return value
* [#6757](https://github.com/osmosis-labs/osmosis/pull/6757) fix: add gas metering to block before send for token factory bank hook
* [#6710](https://github.com/osmosis-labs/osmosis/pull/6710) fix: `{overflow}` bug when querying cosmwasmpool spot price
* [#6767](https://github.com/osmosis-labs/osmosis/pull/6767) fix: typo in ibc lifecycle message in crosschain swap contract

## v19.2.0

Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/contracts/crosschain-swaps/src/ibc_lifecycle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub fn receive_ack(

if success {
// If the acc is successful, there is nothing else to do and the crosschain swap has been completed
return Ok(response.add_attribute("msg", "packet successfully delviered"));
return Ok(response.add_attribute("msg", "packet successfully delivered"));
}

// If the ack is a failure, we create a recovery for the original sender of the packet.
Expand Down

0 comments on commit 79b0f11

Please sign in to comment.