Document the Inbound service in the start module (#1653)

This commit is contained in:
teor 2021-01-29 22:19:06 +10:00 committed by GitHub
parent 21b0360114
commit 24f1b9bad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

View File

@ -16,8 +16,12 @@
//! * verifies blocks using zebra-chain and zebra-script, then stores verified //! * verifies blocks using zebra-chain and zebra-script, then stores verified
//! blocks in zebra-state //! blocks in zebra-state
//! * Sync Task //! * Sync Task
//! * This task runs in the background and continuously queries the network for //! * runs in the background and continuously queries the network for
//! new blocks to be verified and added to the local state //! new blocks to be verified and added to the local state
//! * Inbound Service
//! * handles requests from peers for network data and chain data
//! * performs transaction and block diffusion
//! * downloads and verifies gossipped blocks and transactions
use abscissa_core::{config, Command, FrameworkError, Options, Runnable}; use abscissa_core::{config, Command, FrameworkError, Options, Runnable};
use color_eyre::eyre::{eyre, Report}; use color_eyre::eyre::{eyre, Report};