From fa5b005391d629b928e505c7a4e0b2bf8d9d4b84 Mon Sep 17 00:00:00 2001 From: Benno Zeeman Date: Tue, 14 Jan 2025 16:25:27 +0100 Subject: [PATCH] docs: remove reference to --local in README.md --- autonomi/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autonomi/README.md b/autonomi/README.md index 4c19a3e7c4..7c1dc7f8c4 100644 --- a/autonomi/README.md +++ b/autonomi/README.md @@ -66,12 +66,12 @@ To run the tests, we can run a local network: cargo run --bin evm-testnet ``` -2. Run a local network with the `local` feature and use the local EVM node. +2. Run a local network and use the local EVM node. ```sh - cargo run --bin antctl --features local -- local run --build --clean --rewards-address evm-local + cargo run --bin antctl -- local run --build --clean --rewards-address evm-local ``` -3. Then run the tests with the `local` feature and pass the EVM params again: +3. Then run the tests and pass the EVM params again: ```sh EVM_NETWORK=local cargo test --package autonomi ``` @@ -80,10 +80,10 @@ To run the tests, we can run a local network: Using the hardcoded `Arbitrum One` option as an example, but you can also use the command flags of the steps above and point it to a live network. -1. Run a local network with the `local` feature: +1. Run a local network: ```sh -cargo run --bin antctl --features local -- local run --build --clean --rewards-address evm-arbitrum-one +cargo run --bin antctl -- local run --build --clean --rewards-address evm-arbitrum-one ``` 2. Then pass the private key of the wallet, and ensure it has enough gas and payment tokens on the network (in this case Arbitrum One):