refactor: (Solution) replace check_amount with checked_amount

- This is to have consistency with checked_token
This commit is contained in:
TAMARA LIPOWSKI
2025-02-11 11:25:58 -05:00
parent c4c282a62e
commit 1c565deb57
6 changed files with 15 additions and 15 deletions

View File

@@ -269,7 +269,7 @@ mod tests {
exact_out: false,
given_token: eth(),
checked_token: dai(),
check_amount: None,
checked_amount: None,
swaps: vec![swap],
native_action: Some(NativeAction::Wrap),
..Default::default()
@@ -383,7 +383,7 @@ mod tests {
let solution = Solution {
exact_out: false,
checked_token: eth(),
check_amount: None,
checked_amount: None,
swaps: vec![swap],
native_action: Some(NativeAction::Unwrap),
..Default::default()