We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 160928b commit f9c290fCopy full SHA for f9c290f
x/gov/genesis.go
@@ -92,11 +92,6 @@ func ValidateGenesis(data GenesisState) error {
92
veto.String())
93
}
94
95
- if data.DepositParams.MaxDepositPeriod > data.VotingParams.VotingPeriod {
96
- return fmt.Errorf("Governance deposit period should be less than or equal to the voting period (%ds), is %ds",
97
- data.VotingParams.VotingPeriod, data.DepositParams.MaxDepositPeriod)
98
- }
99
-
100
if !data.DepositParams.MinDeposit.IsValid() {
101
return fmt.Errorf("Governance deposit amount must be a valid sdk.Coins amount, is %s",
102
data.DepositParams.MinDeposit.String())
0 commit comments