blockchain_manager msgs

This commit is contained in:
hinto.janai 2024-09-25 15:47:32 -04:00
parent e618bb7a9e
commit a1b3bdabef
No known key found for this signature in database
GPG key ID: D47CE05FA175A499

View file

@ -36,3 +36,28 @@ pub(super) async fn prune() -> Result<(), Error> {
pub(super) async fn pruned() -> Result<bool, Error> {
Ok(todo!())
}
/// TODO: doc enum message
pub(super) async fn relay_block() -> Result<bool, Error> {
Ok(todo!())
}
/// TODO: doc enum message
pub(super) async fn syncing() -> Result<bool, Error> {
Ok(todo!())
}
/// TODO: doc enum message
pub(super) async fn synced() -> Result<bool, Error> {
Ok(todo!())
}
/// TODO: doc enum message
pub(super) async fn target() -> Result<bool, Error> {
Ok(todo!())
}
/// TODO: doc enum message
pub(super) async fn target_height() -> Result<bool, Error> {
Ok(todo!())
}