Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hardyjosh committed Aug 23, 2024
1 parent 8f76973 commit fbd95bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tauri-app/src-tauri/src/commands/order_quote.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::error::{CommandError, CommandResult};
use alloy::primitives::{Address, U256};
use rain_orderbook_quote::{BatchQuoteSpec, OrderQuoteValue, QuoteSpec};
use rain_orderbook_subgraph_client::types::orders_list;
use rain_orderbook_subgraph_client::types::order_detail;
use serde::{Deserialize, Serialize};
use typeshare::typeshare;

Expand All @@ -16,7 +16,7 @@ pub struct BatchOrderQuotesResponse {

#[tauri::command]
pub async fn batch_order_quotes(
orders: Vec<orders_list::Order>,
orders: Vec<order_detail::Order>,
orderbook: Address,
subgraph_url: String,
rpc_url: String,
Expand Down

0 comments on commit fbd95bc

Please sign in to comment.