Skip to content

Commit d644e01

Browse files
committed
chore: fix clippy warning
1 parent d2b9962 commit d644e01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/verify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ pub enum VerificationError<Seal: RgbSeal> {
307307

308308
// We need manual implementation since otherwise we get an unneeded `Seal::PubWitness: Debug` bound
309309
impl<Seal: RgbSeal> Debug for VerificationError<Seal> {
310-
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result { write!(f, "{}", self) }
310+
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result { write!(f, "{self}") }
311311
}
312312

313313
#[cfg(test)]

0 commit comments

Comments
 (0)