Skip to content

Commit 09aad33

Browse files
prestwichclaude
andcommitted
docs: clarify backfill threshold semantics and RPC config migration
Add doc note that `None` means use backend default for `set_backfill_thresholds`, and add comment in node-config noting that RPC config merging moved to the host adapter crate. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 00e5327 commit 09aad33

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

crates/node-config/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
mod core;
1515
pub use core::{SIGNET_NODE_DEFAULT_HTTP_PORT, SignetNodeConfig};
1616

17+
// NB: RPC config merging (previously `merge_rpc_configs`) is now the
18+
// responsibility of the host adapter crate (e.g. `signet-host-reth`).
19+
1720
mod storage;
1821
pub use storage::StorageConfig;
1922

crates/node-types/src/notifier.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ pub trait HostNotifier {
2727
/// The backend resolves the block number to a block hash internally.
2828
fn set_head(&mut self, block_number: u64);
2929

30-
/// Configure backfill batch size limits.
30+
/// Configure backfill batch size limits. `None` means use the backend's
31+
/// default.
3132
fn set_backfill_thresholds(&mut self, max_blocks: Option<u64>);
3233

3334
/// Signal that processing is complete up to this host block number.

0 commit comments

Comments
 (0)