Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dimxy committed Sep 22, 2024
1 parent 23d8f1d commit 18466fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mm2src/common/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ use futures01::{future, Future};
use http::header::CONTENT_TYPE;
use http::Response;
use parking_lot::{Mutex as PaMutex, MutexGuard as PaMutexGuard};
pub use paste::paste;
use rand::RngCore;
use rand::{rngs::SmallRng, SeedableRng};
use serde::{de, ser};
Expand All @@ -172,7 +173,6 @@ use std::ptr::read_volatile;
use std::sync::atomic::Ordering;
use std::time::{Duration, SystemTime, SystemTimeError};
use uuid::Uuid;
pub use paste::paste;

pub use http::StatusCode;
pub use serde;
Expand Down
2 changes: 1 addition & 1 deletion mm2src/trading_api/src/one_inch_api/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

use super::client::QueryParams;
use super::errors::ApiClientError;
use common::{def_with_opt_param, push_if_some};
use ethereum_types::Address;
use common::{push_if_some, def_with_opt_param};
use mm2_err_handle::mm_error::MmResult;
use serde::{Deserialize, Serialize};

Expand Down

0 comments on commit 18466fc

Please sign in to comment.