Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Implement core::fmt::Debug for BoundedVec #9914

Merged
1 commit merged into from
Oct 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions frame/support/src/storage/bounded_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,12 @@ impl<T, S> Default for BoundedVec<T, S> {
}
}

#[cfg(feature = "std")]
impl<T, S> std::fmt::Debug for BoundedVec<T, S>
impl<T, S> sp_std::fmt::Debug for BoundedVec<T, S>
where
T: std::fmt::Debug,
T: sp_std::fmt::Debug,
S: Get<u32>,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
fn fmt(&self, f: &mut sp_std::fmt::Formatter<'_>) -> sp_std::fmt::Result {
f.debug_tuple("BoundedVec").field(&self.0).field(&Self::bound()).finish()
}
}
Expand Down