Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Besu note #1574

Merged
merged 5 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/private-networks/get-started/start-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,11 @@ Where `<data-path>` is the path to the directory to save the chain data to. Ensu
You might need to set [`--tx-pool-limit-by-account-percentage`](../../public-networks/reference/cli/options.md#tx-pool-limit-by-account-percentage) to 1. The default value is suitable for Mainnet, but may cause issues on private networks.

:::

:::note Sync nodes for BFT

If you're running a node on a [QBFT](../how-to/configure/consensus/qbft.md) or [IBFT 2.0](../how-to/configure/consensus/ibft.md) network, your node must use [fast sync](../../public-networks/get-started/connect/sync-node#fast-synchronization) or [full sync](../../public-networks/get-started/connect/sync-node#run-an-archive-node).

Full sync is set by default.

:::
8 changes: 8 additions & 0 deletions docs/public-networks/get-started/connect/sync-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ You can store the world state using [Forest of Tries](../../concepts/data-storag

You can run a full node using [snap synchronization (snap sync)](#snap-synchronization), [checkpoint synchronization (checkpoint sync)](#checkpoint-synchronization), or [fast synchronization (fast sync)](#fast-synchronization).

:::note Sync nodes for BFT

If you're running a node on a [QBFT](../../../private-networks/how-to/configure/consensus/qbft.md) or [IBFT 2.0](../../../private-networks/how-to/configure/consensus/ibft.md) network, your node must use [fast sync](#fast-synchronization) or [full sync](#run-an-archive-node).

Full sync is set by default.
joaniefromtheblock marked this conversation as resolved.
Show resolved Hide resolved

:::

### Snap synchronization

:::tip
Expand Down
6 changes: 6 additions & 0 deletions docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -4784,6 +4784,12 @@ The synchronization mode. Use `SNAP` for [snap sync](../../get-started/connect/s
- The default is `FULL` when connecting to a private network by not using the [`--network`](#network) option and specifying the [`--genesis-file`](#genesis-file) option.
- The default is `SNAP` when using the [`--network`](#network) option with named networks, except for the `dev` development network. `SNAP` is also the default if running Besu on the default network (Ethereum Mainnet) by specifying neither [network](#network) nor [genesis file](#genesis-file).

:::note Sync nodes for BFT

If you're running a node with the consensus mechanism IBFT 2.0 or QBFT, your node must use either fast sync or full sync.
joaniefromtheblock marked this conversation as resolved.
Show resolved Hide resolved

:::

:::tip

- We recommend using snap sync over fast sync because snap sync can be faster by several days.
Expand Down
Loading