mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +00:00
blockchain_manager msgs
This commit is contained in:
parent
e618bb7a9e
commit
a1b3bdabef
1 changed files with 25 additions and 0 deletions
|
@ -36,3 +36,28 @@ pub(super) async fn prune() -> Result<(), Error> {
|
||||||
pub(super) async fn pruned() -> Result<bool, Error> {
|
pub(super) async fn pruned() -> Result<bool, Error> {
|
||||||
Ok(todo!())
|
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!())
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue