Skip to content

Commit

Permalink
Merge pull request #20 from malik672/prelude
Browse files Browse the repository at this point in the history
fix linter
  • Loading branch information
malik672 authored Dec 30, 2023
2 parents 332dd0f + c870334 commit 3ee2f82
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/entities/currency.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use crate::prelude::*;


#[derive(Clone, PartialEq)]
pub enum Currency {
NativeCurrency(Ether),
Expand Down
2 changes: 1 addition & 1 deletion src/entities/fractions/price.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// External crate dependencies
use crate::prelude::*;
use crate::prelude::*;

// Type alias for a Price, a Fraction with metadata PriceMeta
pub type Price<TBase, TQuote> = FractionLike<PriceMeta<TBase, TQuote>>;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pub mod addresses;
pub mod chains;
pub mod constants;
pub mod entities;
pub mod prelude;
pub mod utils;
pub mod prelude;

0 comments on commit 3ee2f82

Please sign in to comment.