diff --git a/crates/common/src/raindex_client/take_orders/single.rs b/crates/common/src/raindex_client/take_orders/single.rs index 1e6741d48b..915ac92cff 100644 --- a/crates/common/src/raindex_client/take_orders/single.rs +++ b/crates/common/src/raindex_client/take_orders/single.rs @@ -159,7 +159,8 @@ pub async fn execute_single_take( match crate::oracle::fetch_signed_context(&url, body).await { Ok(ctx) => candidate.signed_context = vec![ctx], Err(e) => { - tracing::warn!("Failed to fetch oracle data: {}", e); + tracing::error!("Oracle fetch failed, skipping order execution: {}", e); + return Err(e.into()); } } }