Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jcnelson committed Jan 5, 2021
1 parent 19c5c7f commit bfc3edc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testnet/stacks-node/src/neon_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,8 @@ fn spawn_peer(

if mblock_deadline < get_epoch_time_ms() {
results_with_data.push_back(RelayerDirective::RunMicroblockTenure);
mblock_deadline = get_epoch_time_ms() + (config.node.microblock_frequency as u128);
mblock_deadline =
get_epoch_time_ms() + (config.node.microblock_frequency as u128);
}

while let Some(next_result) = results_with_data.pop_front() {
Expand Down

0 comments on commit bfc3edc

Please sign in to comment.