diff --git a/common/cosmwasm-smart-contracts/vesting-contract/src/lib.rs b/common/cosmwasm-smart-contracts/vesting-contract/src/lib.rs index 647352861a..3915b73fb1 100644 --- a/common/cosmwasm-smart-contracts/vesting-contract/src/lib.rs +++ b/common/cosmwasm-smart-contracts/vesting-contract/src/lib.rs @@ -85,6 +85,7 @@ impl FromStr for PledgeCap { impl Default for PledgeCap { fn default() -> Self { + #[allow(clippy::expect_used)] PledgeCap::Percent(Percent::from_percentage_value(10).expect("This can never fail!")) } }