Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsasari committed Oct 7, 2024
1 parent 8d14a69 commit a318bb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ Toggle details for each namespace to view additional settings:
Set up your node's environment variables using the `MADARA_` prefix. For example:

- `MADARA_BASE_PATH=/path/to/data`
- `MADARA_RPC_PORT=1111=1111`
- `MADARA_RPC_PORT=1111`

These variables allow you to adjust the node's configuration without using command-line arguments. If the command-line
argument is specified then it takes precedent over the environment variable.
Expand Down
4 changes: 2 additions & 2 deletions crates/node/src/cli/block_production.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ pub struct BlockProductionParams {
#[arg(env = "MADARA_BLOCK_PRODUCTION_DISABLED", long, alias = "no-block-production")]
pub block_production_disabled: bool,

/// Launch a devnet with a producton chain id (like SN_MAINNET, SN_SEPOLIA).
/// This in unsafe because your devnet transactiosn can be replayed on the actual network.
/// Launch a devnet with a production chain id (like SN_MAINNET, SN_SEPOLIA).
/// This in unsafe because your devnet transactions can be replayed on the actual network.
#[arg(env = "MADARA_OVERRIDE_DEVNET_CHAIN_ID", long, default_value_t = false)]
pub override_devnet_chain_id: bool,

Expand Down

0 comments on commit a318bb6

Please sign in to comment.