fuel_core_sync/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![deny(clippy::arithmetic_side_effects)]
#![deny(clippy::cast_possible_truncation)]
#![deny(unused_crate_dependencies)]
#![deny(missing_docs)]
#![deny(warnings)]
#![allow(clippy::blocks_in_conditions)] // Triggered by tracing macros

//! # Sync Service
//! Responsible for syncing the blockchain from the network.

pub mod import;
pub mod ports;
pub mod service;
pub mod state;
pub mod sync;

pub use import::Config;

use rand as _;

#[cfg(test)]
fuel_core_trace::enable_tracing!();