Spelling: gossipped -> gossiped (#2119)
This commit is contained in:
parent
2ef5277d2b
commit
74e155ff9f
|
@ -95,7 +95,7 @@ especially the ability to make good connections to other Zcash network peers.
|
||||||
|
|
||||||
Network:
|
Network:
|
||||||
- synchronize the chain from peers
|
- synchronize the chain from peers
|
||||||
- download gossipped blocks from peers
|
- download gossiped blocks from peers
|
||||||
- answer inbound peer requests for hashes, headers, and blocks
|
- answer inbound peer requests for hashes, headers, and blocks
|
||||||
|
|
||||||
State:
|
State:
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
//! * Inbound Service
|
//! * Inbound Service
|
||||||
//! * handles requests from peers for network data and chain data
|
//! * handles requests from peers for network data and chain data
|
||||||
//! * performs transaction and block diffusion
|
//! * performs transaction and block diffusion
|
||||||
//! * downloads and verifies gossipped blocks and transactions
|
//! * downloads and verifies gossiped 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};
|
||||||
|
|
|
@ -56,7 +56,7 @@ pub enum Setup {
|
||||||
/// A shared list of peer addresses.
|
/// A shared list of peer addresses.
|
||||||
address_book: Arc<std::sync::Mutex<zn::AddressBook>>,
|
address_book: Arc<std::sync::Mutex<zn::AddressBook>>,
|
||||||
|
|
||||||
/// A `futures::Stream` that downloads and verifies gossipped blocks.
|
/// A `futures::Stream` that downloads and verifies gossiped blocks.
|
||||||
downloads: Pin<Box<InboundDownloads>>,
|
downloads: Pin<Box<InboundDownloads>>,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -45,14 +45,14 @@ type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;
|
||||||
/// Therefore, this attack can be carried out by a single malicious node.
|
/// Therefore, this attack can be carried out by a single malicious node.
|
||||||
const MAX_INBOUND_CONCURRENCY: usize = 10;
|
const MAX_INBOUND_CONCURRENCY: usize = 10;
|
||||||
|
|
||||||
/// The action taken in response to a peer's gossipped block hash.
|
/// The action taken in response to a peer's gossiped block hash.
|
||||||
pub enum DownloadAction {
|
pub enum DownloadAction {
|
||||||
/// The block hash was successfully queued for download and verification.
|
/// The block hash was successfully queued for download and verification.
|
||||||
AddedToQueue,
|
AddedToQueue,
|
||||||
|
|
||||||
/// The block hash is already queued, so this request was ignored.
|
/// The block hash is already queued, so this request was ignored.
|
||||||
///
|
///
|
||||||
/// Another peer has already gossipped the same hash to us.
|
/// Another peer has already gossiped the same hash to us.
|
||||||
AlreadyQueued,
|
AlreadyQueued,
|
||||||
|
|
||||||
/// The queue is at capacity, so this request was ignored.
|
/// The queue is at capacity, so this request was ignored.
|
||||||
|
|
Loading…
Reference in New Issue