From 3aa815bd29863b6715149b0d72e3abd0a8c1a386 Mon Sep 17 00:00:00 2001 From: Matt Kocubinski Date: Mon, 23 May 2022 17:17:38 -0500 Subject: [PATCH] Remove CHANGELOG entry --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15c3165d2a29..9a5ddac6ac20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -91,7 +91,6 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### API Breaking Changes -* (container) [#12021](https://github.com/cosmos/cosmos-sdk/pull/12021) Rename `container.Option` to `container.Config` * (x/auth/ante) [#11985](https://github.com/cosmos/cosmos-sdk/pull/11985) The `MempoolFeeDecorator` has been removed. Instead, the `DeductFeeDecorator` takes a new argument of type `TxFeeChecker`, to define custom fee models. If `nil` is passed to this `TxFeeChecker` argument, then it will default to `checkTxFeeWithValidatorMinGasPrices`, which is the exact same behavior as the old `MempoolFeeDecorator` (i.e. checking fees against validator's own min gas price). * (x/auth/ante) [#11985](https://github.com/cosmos/cosmos-sdk/pull/11985) The `ExtensionOptionsDecorator` takes an argument of type `ExtensionOptionChecker`. For backwards-compatibility, you can pass `nil`, which defaults to the old behavior of rejecting all tx extensions. * (crypto/keyring) [#11932](https://github.com/cosmos/cosmos-sdk/pull/11932) Remove `Unsafe*` interfaces from keyring package. Please use interface casting if you wish to access those unsafe functions.