Skip to content

Commit

Permalink
Fixed lmp bug (#948)
Browse files Browse the repository at this point in the history
## Describe your changes
Fixed LMP Bug.
  • Loading branch information
Gauthamastro committed Apr 30, 2024
2 parents d5a2d91 + 156c719 commit 71922c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/ocex/src/lmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ impl<T: Config> Pallet<T> {
)?;

// Taker fees is in quote because they put bid order.
let fees = taker_fees.saturating_mul(trade.price);
let fees = taker_fees;
store_fees_paid_by_main_account_in_quote(
state,
epoch,
Expand Down

0 comments on commit 71922c5

Please sign in to comment.