We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0b416 commit c399028Copy full SHA for c399028
packages/services/src/state_listener/eigen_service.rs
@@ -83,11 +83,11 @@ where
83
changes.push((submission_id, DispersalStatus::Confirmed));
84
}
85
DispersalStatus::Finalized => {
86
- last_finalized_request_id = Some(submission.request_id.clone());
87
tracing::info!(
88
"Finalized submission with request_id: {}",
89
submission.as_base64(),
90
);
+ last_finalized_request_id = Some(submission.request_id);
91
changes.push((submission_id, DispersalStatus::Finalized));
92
93
DispersalStatus::Other(other_status) => {
0 commit comments