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 e0b601d commit 81454dfCopy full SHA for 81454df
tip-router-operator-cli/src/process_epoch.rs
@@ -112,7 +112,7 @@ pub async fn loop_stages(
112
save_stages: bool,
113
) -> Result<()> {
114
let keypair = read_keypair_file(&cli.keypair_path).expect("Failed to read keypair file");
115
-
+
116
let mut current_epoch_info = {
117
loop {
118
match rpc_client.get_epoch_info().await {
@@ -329,7 +329,10 @@ pub async fn loop_stages(
329
)
330
.await;
331
if let Err(e) = submit_result {
332
- error!("Failed to submit epoch {} to NCN: {:?}", epoch_to_process, e);
+ error!(
333
+ "Failed to submit epoch {} to NCN: {:?}",
334
+ epoch_to_process, e
335
+ );
336
}
337
stage = OperatorState::WaitForNextEpoch;
338
0 commit comments