Skip to content

Commit 87eb8c3

Browse files
committed
Increase default to 1000.
1 parent 9b6c485 commit 87eb8c3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CLI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ Run a GraphQL service that exposes a faucet where users can claim tokens. This g
605605
* `--limit-rate-until <LIMIT_RATE_UNTIL>` — The end timestamp: The faucet will rate-limit the token supply so it runs out of money no earlier than this
606606
* `--max-chain-length <MAX_CHAIN_LENGTH>` — The maximum number of blocks in the faucet chain, before a new one is created
607607

608-
Default value: `100`
608+
Default value: `1000`
609609
* `--listener-skip-process-inbox` — Do not create blocks automatically to receive incoming messages. Instead, wait for an explicit mutation `processInbox`
610610
* `--listener-delay-before-ms <DELAY_BEFORE_MS>` — Wait before processing any notification (useful for testing)
611611

linera-service/src/linera/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ pub enum ClientCommand {
615615
limit_rate_until: Option<DateTime<Utc>>,
616616

617617
/// The maximum number of blocks in the faucet chain, before a new one is created.
618-
#[arg(long, default_value = "100")]
618+
#[arg(long, default_value = "1000")]
619619
max_chain_length: u64,
620620

621621
/// Configuration for the faucet chain listener.

0 commit comments

Comments
 (0)