Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #77 from cowprotocol/fix_volume_fee
Browse files Browse the repository at this point in the history
make volume fee code identical to code in solver-rewards repo
  • Loading branch information
fhenneke authored Feb 5, 2024
2 parents 3441bcc + 37a740b commit f4e3e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sql/orderbook/batch_rewards.sql
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ order_surplus AS (
)
END
WHEN fp.kind = 'volume'
THEN fp.volume_factor / (1 - fp.volume_factor) * os.sell_amount
THEN fp.volume_factor / (1 + fp.volume_factor) * os.sell_amount
END AS protocol_fee,
CASE
WHEN fp.kind = 'surplus'
Expand Down

0 comments on commit f4e3e5c

Please sign in to comment.