Skip to content

Commit c92d175

Browse files
committed
Run cargo fmt
1 parent 1702d6a commit c92d175

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/blockchain/tests/signature_spectests.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ fn run(path: &Path) -> datatest_stable::Result<()> {
4949
let signed_block: SignedBlockWithAttestation = test.signed_block_with_attestation.into();
5050

5151
// Advance time to the block's slot
52-
let block_time_ms = (signed_block.message.block.slot * SECONDS_PER_SLOT + genesis_time) * 1000;
52+
let block_time_ms =
53+
(signed_block.message.block.slot * SECONDS_PER_SLOT + genesis_time) * 1000;
5354
store::on_tick(&mut st, block_time_ms, true, false);
5455

5556
// Process the block (this includes signature verification)

0 commit comments

Comments
 (0)