mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-01-30 23:42:13 +00:00
Remove unnecessary raw marker
Co-Authored-By: str4d <thestr4d@gmail.com>
This commit is contained in:
parent
53182aa08e
commit
d63fa334ff
@ -75,9 +75,9 @@ pub struct FsRepr(pub [u64; 4]);
|
|||||||
|
|
||||||
impl ::std::fmt::Display for FsRepr {
|
impl ::std::fmt::Display for FsRepr {
|
||||||
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
||||||
r#write!(f, "0x")?;
|
write!(f, "0x")?;
|
||||||
for i in self.0.iter().rev() {
|
for i in self.0.iter().rev() {
|
||||||
r#write!(f, "{:016x}", *i)?;
|
write!(f, "{:016x}", *i)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
Loading…
Reference in New Issue
Block a user