Browse Source
Avoid overlapping CETs in dummy payouts
upload-correct-windows-binary
Lucas Soriano del Pino
3 years ago
No known key found for this signature in database
GPG Key ID: EE611E973A1530E7
1 changed files with
2 additions and
2 deletions
-
daemon/src/payout_curve.rs
|
|
@ -17,9 +17,9 @@ pub fn calculate( |
|
|
|
maker_payin + taker_payin, |
|
|
|
bitcoin::Amount::ZERO, |
|
|
|
)?, |
|
|
|
generate_payouts((dollars - 10)..=(dollars + 10), maker_payin, taker_payin)?, |
|
|
|
generate_payouts((dollars - 9)..=(dollars + 10), maker_payin, taker_payin)?, |
|
|
|
generate_payouts( |
|
|
|
(dollars + 10)..=MAX_PRICE_DEC, |
|
|
|
(dollars + 11)..=MAX_PRICE_DEC, |
|
|
|
bitcoin::Amount::ZERO, |
|
|
|
maker_payin + taker_payin, |
|
|
|
)?, |
|
|
|