fix: Use max instead of min to get the min_amount_out

between slippaged amount and checked amount
Save router's address as Bytes and not String

--- don't change below this line ---
ENG-4081 Took 7 minutes
This commit is contained in:
Diana Carvalho
2025-01-30 19:44:57 +00:00
parent a28b54888e
commit 575c5bea5e
2 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
use std::{cmp::min, str::FromStr};
use std::{cmp::max, str::FromStr};
use alloy_primitives::{aliases::U24, map::HashSet, FixedBytes, U256, U8};
use alloy_sol_types::SolValue;
@@ -76,7 +76,7 @@ impl StrategyEncoder for SplitSwapStrategyEncoder {
let multiplier = &one_hundred - slippage_percent;
let expected_amount_with_slippage =
(&solution.expected_amount * multiplier) / one_hundred;
min_amount_out = min(min_amount_out, expected_amount_with_slippage);
min_amount_out = max(min_amount_out, expected_amount_with_slippage);
}
min_amount_out
} else {
@@ -115,7 +115,7 @@ impl StrategyEncoder for SplitSwapStrategyEncoder {
.position(|t| *t == swap.token_in)
.ok_or_else(|| {
EncodingError::InvalidInput(
"Token in not found in tokens array".to_string(),
"In token not found in tokens array".to_string(),
)
})?,
),
@@ -125,7 +125,7 @@ impl StrategyEncoder for SplitSwapStrategyEncoder {
.position(|t| *t == swap.token_out)
.ok_or_else(|| {
EncodingError::InvalidInput(
"Token out not found in tokens array".to_string(),
"Out token not found in tokens array".to_string(),
)
})?,
),