Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions types/src/engine_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ impl EngineClient for RethEngineClient {
.await
.expect("Failed to get payload after reconnect")
}
Err(_) => panic!("Unable to get a response"),
Err(e) => panic!("failed to retrieve payload, error: {}", e),
}
}

Expand Down Expand Up @@ -170,7 +170,7 @@ impl EngineClient for RethEngineClient {
.await
.expect("Failed to check payload after reconnect")
}
Err(_) => panic!("Unable to get a response"),
Err(e) => panic!("failed to check payload, error: {}", e),
}
}

Expand All @@ -188,7 +188,7 @@ impl EngineClient for RethEngineClient {
.await
.expect("Failed to commit hash after reconnect")
}
Err(_) => panic!("Unable to get a response"),
Err(e) => panic!("failed to commit hash, error: {}", e),
}
}
}
Expand Down
Loading