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 min gas option #1490

Merged
merged 5 commits into from
Feb 1, 2024
Merged
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
41 changes: 41 additions & 0 deletions docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -4983,6 +4983,47 @@ instead of the number of transactions.
To configure the maximum memory capacity, use [`--tx-pool-layer-max-capacity`](#tx-pool-layer-max-capacity).
:::

### `tx-pool-min-gas-price`

<Tabs>

<TabItem value="Syntax" label="Syntax" default>

```bash
--tx-pool-min-size=<INTEGER>
joaniefromtheblock marked this conversation as resolved.
Show resolved Hide resolved
```

</TabItem>

<TabItem value="Example" label="Example">

```bash
--tx-pool-min-size=2000
joaniefromtheblock marked this conversation as resolved.
Show resolved Hide resolved
```

</TabItem>

<TabItem value="Environment variable" label="Environment variable">

```bash
BESU_TX_POOL_MIN_SIZE=2000
joaniefromtheblock marked this conversation as resolved.
Show resolved Hide resolved
```

</TabItem>

<TabItem value="Configuration file" label="Configuration file">

```bash
tx-pool-max-size="2000"
joaniefromtheblock marked this conversation as resolved.
Show resolved Hide resolved
```

</TabItem>

</Tabs>

The minimum gas price required for a transaction to be accepted into the [transaction pool](../../concepts/transactions/pool.md).
joaniefromtheblock marked this conversation as resolved.
Show resolved Hide resolved


### `tx-pool-no-local-priority`

<Tabs>
Expand Down
Loading