Skip to content

Commit

Permalink
solver fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Mar 27, 2024
1 parent e359a79 commit 5c949fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mantis/node/src/bin/mantis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async fn main() {
let args = MantisArgs::parsed();

match &args.command {
MantisCommands::Solve(_) => todo!(),
MantisCommands::Solve(x) => solve_orders(x).await,
MantisCommands::Simulate(x) => {
simulate_orders(x).await;
}
Expand Down Expand Up @@ -118,6 +118,12 @@ async fn main() {
// }
}

async fn solve_orders(x: &SolverArgs) {

}



async fn simulate_orders(simulate_args: &SimulateArgs) {
let args = &simulate_args.shared;
let mut wasm_read_client = create_wasm_query_client(&args.grpc_centauri).await;
Expand Down

0 comments on commit 5c949fc

Please sign in to comment.