Skip to content

Commit 586dcb1

Browse files
committed
fix: lints
1 parent e2bf1e5 commit 586dcb1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ jobs:
128128
- type: wasm
129129
target: wasm32-unknown-unknown
130130
exclude: |
131-
scroll-engine,scroll-wire,rollup-node,scroll-network,rollup-node-manager,rollup-node-watcher,scroll-db,scroll-migration,rollup-node-indexer,scroll-derivation-pipeline
131+
scroll-engine,scroll-wire,rollup-node,scroll-network,rollup-node-manager,rollup-node-watcher,scroll-db,scroll-migration,rollup-node-indexer,scroll-derivation-pipeline,rollup-node-providers
132132
- type: riscv
133133
target: riscv32imac-unknown-none-elf
134134
exclude: |
135-
scroll-engine,scroll-wire,rollup-node,scroll-network,rollup-node-manager,rollup-node-watcher,scroll-db,scroll-migration,rollup-node-indexer,scroll-codec,scroll-derivation-pipeline
135+
scroll-engine,scroll-wire,rollup-node,scroll-network,rollup-node-manager,rollup-node-watcher,scroll-db,scroll-migration,rollup-node-indexer,scroll-codec,scroll-derivation-pipeline,rollup-node-providers
136136
steps:
137137
- uses: actions/checkout@v4
138138
- uses: rui314/setup-mold@v1

crates/providers/src/beacon_client.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub struct ReducedConfigData {
3939
pub seconds_per_slot: u64,
4040
}
4141

42-
/// An online implementation of the [`BeaconClient`] trait.
42+
/// An online implementation of a Beacon client.
4343
#[derive(Debug, Clone)]
4444
pub struct OnlineBeaconClient {
4545
/// The base URL of the beacon API.
@@ -49,7 +49,7 @@ pub struct OnlineBeaconClient {
4949
}
5050

5151
impl OnlineBeaconClient {
52-
/// Creates a new [`OnlineBeaconClient`] from the provided [Url].
52+
/// Creates a new [`OnlineBeaconClient`] from the provided base url.
5353
pub fn new_http(mut base: String) -> Self {
5454
// If base ends with a slash, remove it
5555
if base.ends_with('/') {

crates/providers/src/l1/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ pub struct OnlineL1Provider<P> {
5454
}
5555

5656
impl<P> OnlineL1Provider<P> {
57-
/// Returns a new [`OnlineBeaconClient`] from the provided [`BeaconClient`], blob capacity and
58-
/// [`L1MessageProvider`].
57+
/// Returns a new [`OnlineBeaconClient`] from the provided [`OnlineBeaconClient`], blob capacity
58+
/// and [`L1MessageProvider`].
5959
pub async fn new(
6060
client: OnlineBeaconClient,
6161
blob_capacity: usize,

0 commit comments

Comments
 (0)