Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gshep committed Jul 29, 2024
1 parent 9389122 commit bc140cc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gear-programs/checkpoint-light-client/src/wasm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ async fn init() {
})
},

Ok((finalized_header, sync_committee_next)) => panic!("Incorrect initial sync committee update ({}, {})", finalized_header.is_some(), sync_committee_next.is_some()),
Ok((finalized_header, sync_committee_next)) => panic!(
"Incorrect initial sync committee update ({}, {})",
finalized_header.is_some(),
sync_committee_next.is_some()
),
}
}

Expand Down

0 comments on commit bc140cc

Please sign in to comment.