Skip to content

Commit ae1ac99

Browse files
committed
fix: log other status
1 parent c40ee71 commit ae1ac99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/services/src/state_listener/eigen_service.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ where
8080
);
8181
changes.push((submission_id, DispersalStatus::Finalized));
8282
}
83-
_ => {
83+
DispersalStatus::Other(other_status) => {
8484
// log got bad status
8585
tracing::info!(
86-
"Unexpected status - submission with request_id: {}",
86+
"Unexpected status {other_status} - submission with request_id: {}",
8787
submission.as_base64(),
8888
);
8989
changes.push((submission_id, DispersalStatus::Failed));

0 commit comments

Comments
 (0)