From 834ee98bc277f10fd830983b8ece5be8df99b90f Mon Sep 17 00:00:00 2001 From: SaNNNNNNNN <82680702+SaNNNNNNNN@users.noreply.github.com> Date: Sat, 31 Jul 2021 02:24:09 +0000 Subject: [PATCH] Fix flag in redundancy docs (#2482) Replace all --process-all-attestations with --import-all-attestations ## Issue Addressed Which issue # does this PR address? ## Proposed Changes Please list or describe the changes introduced by this PR. ## Additional Info Please provide any additional information. For example, future considerations or information useful for reviewers. --- book/src/redundancy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/book/src/redundancy.md b/book/src/redundancy.md index 2c07c90bb2..989d3c1161 100644 --- a/book/src/redundancy.md +++ b/book/src/redundancy.md @@ -61,7 +61,7 @@ following flags: `5052`). This is only required if your backup node is on a different host. - `--subscribe-all-subnets`: ensures that the beacon node subscribes to *all* subnets, not just on-demand requests from validators. -- `--process-all-attestations`: ensures that the beacon node performs +- `--import-all-attestations`: ensures that the beacon node performs aggregation on all seen attestations. Subsequently, one could use the following command to provide a backup beacon @@ -72,12 +72,12 @@ lighthouse bn \ --staking \ --http-address 0.0.0.0 \ --subscribe-all-subnets \ - --process-all-attestations + --import-all-attestations ``` ### Resource usage of redundant Beacon Nodes -The `--subscribe-all-subnets` and `--process-all-attestations` flags typically +The `--subscribe-all-subnets` and `--import-all-attestations` flags typically cause a significant increase in resource consumption. A doubling in CPU utilization and RAM consumption is expected.