Skip to content

Commit

Permalink
correction issues (#3389)
Browse files Browse the repository at this point in the history
linera-service/src/benchmark.rs
amount - number

linera-service/src/server.rs
hards not supported - hards are not supported

---------

Signed-off-by: comfsrt <155266597+comfsrt@users.noreply.github.com>
  • Loading branch information
comfsrt authored Feb 22, 2025
1 parent 87748b7 commit 8bceaba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linera-service/src/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ enum Args {
seed: u64,

#[arg(long = "uniform")]
/// If set, each chain receives the exact same amount of transfers.
/// If set, each chain receives the exact same number of transfers.
uniform: bool,
},
}
Expand Down
2 changes: 1 addition & 1 deletion linera-service/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ async fn run(options: ServerOptions) {
if server_config.internal_network.shards.len() > 1
&& storage_config.storage_config.is_rocks_db()
{
panic!("Multiple shards not supported with RocksDB");
panic!("Multiple shards are not supported with RocksDB");
}

let job = ServerContext {
Expand Down

0 comments on commit 8bceaba

Please sign in to comment.