* feat!: initial deposit requirement for proposals * changelog * fix genesis sim tests * msg server test and err check * fix e2e gov tests * fix param tests * fix sim and migration tests * remove redundant check * uncomment tests and revert the consensus version change * migrations comment * fix comment in simulation genesis * restore zero ratio check * remove gogoproto tag from new param * upgrading.md Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
8 lines
211 B
Go
8 lines
211 B
Go
package keeper
|
|
|
|
import sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
func (k Keeper) ValidateInitialDeposit(ctx sdk.Context, initialDeposit sdk.Coins) error {
|
|
return k.validateInitialDeposit(ctx, initialDeposit)
|
|
}
|