Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed May 20, 2024
1 parent 1e30e7d commit f1dc57e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ impl CrowdfundingESDTTestState {
}

fn set_block_timestamp(&mut self, block_timestamp_expr: u64) {
self.world.current_block().block_timestamp(block_timestamp_expr);
self.world
.current_block()
.block_timestamp(block_timestamp_expr);
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use crate::{
call_tree::CallState, comp_interact_controller::ComposabilityInteract, forwarder_queue_proxy, vault_proxy
call_tree::CallState, comp_interact_controller::ComposabilityInteract, forwarder_queue_proxy,
vault_proxy,
};

use multiversx_sc_snippets::imports::*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ mod comp_interact_config;
mod comp_interact_controller;
mod comp_interact_state;

mod vault_proxy;
mod forwarder_queue_proxy;
mod vault_proxy;

use clap::Parser;
use comp_interact_controller::ComposabilityInteract;
Expand Down

0 comments on commit f1dc57e

Please sign in to comment.