From 24cc1c12fc03fe1683e26a8fcbd98a9762b9c469 Mon Sep 17 00:00:00 2001 From: dappnodedev Date: Tue, 24 Sep 2024 16:25:18 +0200 Subject: [PATCH] Fix sync modes --- setup-wizard.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup-wizard.yml b/setup-wizard.yml index 0db87c2..1b4aa1f 100644 --- a/setup-wizard.yml +++ b/setup-wizard.yml @@ -35,22 +35,22 @@ fields: - title: Sync Mode id: sync_mode description: >- - Besu can use one of three sync modes, FULL (slow, archive node), FAST (fast, full node), X_SNAP (faster, experimental and works with BONSAI), and X_CHECKPOINT (Fastest, and latest sync method works with BONSAI). + Besu can use one of three sync modes, FULL (slow, archive node), FAST (fast, full node), SNAP (faster, experimental and works with BONSAI), and CHECKPOINT (Fastest, and latest sync method works with BONSAI). You can read about the differences [here](https://besu.hyperledger.org/stable/public-networks/get-started/connect/sync-node). - Default sync mode is X_CHECKPOINT. + Default sync mode is CHECKPOINT. target: type: environment name: SYNC_MODE service: besu enum: - - X_CHECKPOINT + - CHECKPOINT - FAST - FULL - - X_SNAP + - SNAP required: true if: { "config_mode": { "enum": ["advanced"] } } - title: Enable WebSocket API