Skip to content

Commit

Permalink
run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed Oct 15, 2021
1 parent c2bc2ef commit 363bdae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion chain-explorer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ impl NeedsBootstrap {
let parent_id = block0.parent_id();
let block_id = block0.id();

mut_tx.add_block0(&parent_id.into(), &block_id.into(), block0.contents().iter())?;
mut_tx.add_block0(
&parent_id.into(),
&block_id.into(),
block0.contents().iter(),
)?;

mut_tx.commit()?;

Expand Down

0 comments on commit 363bdae

Please sign in to comment.