Skip to content

Commit

Permalink
Merge pull request #1608 from grod220/expose-fraction-error
Browse files Browse the repository at this point in the history
Expose CheckedMultiplyFractionError publicly
  • Loading branch information
webmaster128 authored Mar 2, 2023
2 parents 586cf16 + d436094 commit ca9abca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to

## [Unreleased]

### Fixed

- cosmwasm-std: Add missing export `CheckedMultiplyFractionError` ([#1608]).

[#1608]: https://github.com/CosmWasm/cosmwasm/pull/1608

## [1.2.1] - 2023-01-30

### Added
Expand Down
6 changes: 3 additions & 3 deletions packages/std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ pub use crate::binary::Binary;
pub use crate::coin::{coin, coins, has_coins, Coin};
pub use crate::deps::{Deps, DepsMut, OwnedDeps};
pub use crate::errors::{
CheckedFromRatioError, CheckedMultiplyRatioError, ConversionOverflowError, DivideByZeroError,
OverflowError, OverflowOperation, RecoverPubkeyError, StdError, StdResult, SystemError,
VerificationError,
CheckedFromRatioError, CheckedMultiplyFractionError, CheckedMultiplyRatioError,
ConversionOverflowError, DivideByZeroError, OverflowError, OverflowOperation,
RecoverPubkeyError, StdError, StdResult, SystemError, VerificationError,
};
pub use crate::hex_binary::HexBinary;
#[cfg(feature = "stargate")]
Expand Down

0 comments on commit ca9abca

Please sign in to comment.