Skip to content

Commit

Permalink
Fix test and docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen committed Oct 18, 2024
1 parent 6511c93 commit 7939888
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion beacon_node/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ pub fn cli_app() -> Command {
.long("supernode-data-column-publication-batch-interval")
.action(ArgAction::Set)
.help_heading(FLAG_HEADER)
.help("The delay applied by supernodes between the sending of each data column batch. For PeerDAS only.")
.help("The delay in milliseconds applied by supernodes between the sending of each data column batch. For PeerDAS only.")
.display_order(0)
)
.arg(
Expand Down
6 changes: 6 additions & 0 deletions book/src/help_bn.md
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,12 @@ Flags:
Subscribe to all subnets regardless of validator count. This will also
advertise the beacon node as being long-lived subscribed to all
subnets.
--supernode-data-column-publication-batch-interval <supernode-data-column-publication-batch-interval>
The delay in milliseconds applied by supernodes between the sending of
each data column batch. For PeerDAS only.
--supernode-data-column-publication-batches <supernode-data-column-publication-batches>
Number of batches that supernodes split data columns into during
publishing by a non-proposer. For PeerDAS only.
--validator-monitor-auto
Enables the automatic detection and monitoring of validators connected
to the HTTP API and using the subnet subscription endpoint. This
Expand Down
2 changes: 1 addition & 1 deletion lighthouse/tests/beacon_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ fn supernode_data_column_publication_batch_interval() {
config
.chain
.supernode_data_column_publication_batch_interval,
300
Duration::from_millis(300)
)
});
}
Expand Down

0 comments on commit 7939888

Please sign in to comment.