Skip to content

Commit 566fc56

Browse files
committed
Apply cargo fmt
1 parent 337ec39 commit 566fc56

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

crates/env/src/engine/on_chain/pallet_revive.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -569,9 +569,11 @@ fn call_storage_precompile(
569569
fn decode_bytes(input: &[u8], out: &mut [u8]) -> usize {
570570
let mut buf = [0u8; 4];
571571
buf[..].copy_from_slice(&input[28..32]);
572-
debug_assert_eq!({
573-
let offset = u32::from_be_bytes(buf) as usize;
574-
offset},
572+
debug_assert_eq!(
573+
{
574+
let offset = u32::from_be_bytes(buf) as usize;
575+
offset
576+
},
575577
64
576578
);
577579

0 commit comments

Comments
 (0)