chore: add error when unwind failed on launch (#16188)

This commit is contained in:
Matthias Seitz
2025-05-13 12:25:30 +02:00
committed by GitHub
parent a2c1646107
commit dfbbc2e0e5

View File

@@ -443,7 +443,9 @@ where
let _ = tx.send(result);
}),
);
rx.await??;
rx.await?.inspect_err(|err| {
error!(target: "reth::cli", unwind_target = %unwind_target, %err, "failed to run unwind")
})?;
}
Ok(factory)