Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sideninja authored Jul 16, 2024
1 parent f25b648 commit c6c30f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,26 +263,26 @@ flow keys generate

## Emulating mainnet and testnet transactions

The emulator allows you to simulate the execution of transactions as if they were
performed on the Mainnet or Testnet. In order to activate this feature,
you must specify the network name for the chain ID flag as well as the RPC host
The emulator allows you to simulate the execution of transactions as if
performed on the Mainnet or Testnet. To activate this feature,
you must specify the network name for the chain ID flag and the RPC host
to connect to.

```
flow emulator --chain-id mainnet --rpc-host access.mainnet.nodes.onflow.org:9000
flow emulator --chain-id mainnet --rpc-host access.devnet.nodes.onflow.org:9000
```

Please note, the actual execution on the real network may differ depending on the exact state when the transaction is
Please note, that the actual execution on the real network may differ depending on the exact state when the transaction is
executed.

By default, the forked network will start from the latest sealed block when the emulator
is started. You can specify a different starting block height by using the `--start-block-height` flag.

You can also store all of your changes and cached registers to a persistent db by using the `--persist` flag,
along with the other sqlite settings.
along with the other SQLite settings.

To submit transactions as a different account, you can use the `--skip-tx-validation` flag to disable transaction
To submit transactions as a different account, you can use the `--skip-tx-validation` flag to disable the transaction
signature
verification. Then submit transactions from any account using any valid private key.

Expand Down

0 comments on commit c6c30f1

Please sign in to comment.