mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-21 22:04:44 +00:00
The remote signer relies on the `types` and `crypto/bls` crates from Lighthouse. Moreover, a number of tests of the remote signer consumption of LH leverages this very signer, making any important update a potential dependency nightmare. Co-authored-by: Paul Hauner <paul@paulhauner.com>
8 lines
154 B
Rust
8 lines
154 B
Rust
use crate::api_response::UpcheckApiResponse;
|
|
|
|
pub fn upcheck() -> UpcheckApiResponse {
|
|
UpcheckApiResponse {
|
|
status: "OK".to_string(),
|
|
}
|
|
}
|