Skip to content

Commit

Permalink
Include expedited proposal logic
Browse files Browse the repository at this point in the history
  • Loading branch information
mattverse committed Mar 21, 2024
1 parent 1b7b242 commit 61ceeba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/gov/keeper/deposit.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func (keeper Keeper) AddDeposit(ctx sdk.Context, proposalID uint64, depositorAdd

// NOTE: backported from v50
// v47 does not have expedited proposals so we always use params.MinDeposit
minDepositAmount := params.MinDeposit
minDepositAmount := proposal.GetMinDepositFromParams(params)
minDepositRatio, err := sdk.NewDecFromStr(params.GetMinDepositRatio())
if err != nil {
return false, err
Expand Down

0 comments on commit 61ceeba

Please sign in to comment.