From fdc9395d19fd62a808039d53b0167ed33f31154e Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sun, 16 Jun 2024 18:01:23 -0700 Subject: [PATCH] >= --- src/bin/sys-lend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/sys-lend.rs b/src/bin/sys-lend.rs index 9a5b720..51c6937 100644 --- a/src/bin/sys-lend.rs +++ b/src/bin/sys-lend.rs @@ -1210,7 +1210,7 @@ async fn main() -> Result<(), Box> { impl BestOperationInfo { fn replace_if_greater_total_apy(&mut self, info: OperationInfo) { if info.instructions_for_ops.simulation_total_apy - > self + >= self .maybe .as_ref() .map(|best_info| best_info.instructions_for_ops.simulation_total_apy)