Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed May 10, 2023
1 parent 904d489 commit 700df9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::{
},
prelude::*,
proto::contract_call_service_server::ContractCallServiceServer,
server::{self, FILE_DESCRIPTOR_SET, with_tls},
server::{self, with_tls, FILE_DESCRIPTOR_SET},
};
use abscissa_core::{clap::Parser, config, Command, FrameworkError, Runnable};
use std::result::Result;
Expand Down
8 changes: 7 additions & 1 deletion src/simulate.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
use abscissa_core::tracing::log::{info, warn};
use tonic::{async_trait, Code, Request, Response, Status};

use crate::{cork::get_encoded_call, error::Error, proto::{self, ScheduleRequest, SimulateRequest, SimulateResponse}, tenderly, utils::bytes_to_hex_str};
use crate::{
cork::get_encoded_call,
error::Error,
proto::{self, ScheduleRequest, SimulateRequest, SimulateResponse},
tenderly,
utils::bytes_to_hex_str,
};

pub struct SimulateHandler;

Expand Down

0 comments on commit 700df9e

Please sign in to comment.