Skip to content

Commit

Permalink
Remove unnecessary Bounded trait bound
Browse files Browse the repository at this point in the history
  • Loading branch information
rockbmb committed Jan 10, 2025
1 parent 6426401 commit 1e48276
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions substrate/frame/revive/src/storage/meter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use frame_support::{
DefaultNoBound, RuntimeDebugNoBound,
};
use sp_runtime::{
traits::{Bounded, Saturating, Zero},
traits::{Saturating, Zero},
DispatchError, FixedPointNumber, FixedU128,
};

Expand Down Expand Up @@ -271,7 +271,6 @@ impl<T: Config> Default for Contribution<T> {
impl<T, E, S> RawMeter<T, E, S>
where
T: Config,
BalanceOf<T>: Bounded,
E: Ext<T>,
S: State + Default + Debug,
{
Expand Down

0 comments on commit 1e48276

Please sign in to comment.