Skip to content

Commit

Permalink
Merge branch 'main' into blobSidecars-data-availability-race
Browse files Browse the repository at this point in the history
  • Loading branch information
abi87 committed Nov 11, 2024
2 parents fe9d754 + 9cbce04 commit 86e901f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ _The project is still heavily under construction, see the [disclaimer below](#st
[![CodeCov](https://codecov.io/gh/berachain/beacon-kit/graph/badge.svg?token=0l5iJ3ZbzV)](https://codecov.io/gh/berachain/beacon-kit)
[![Telegram Chat](https://img.shields.io/endpoint?color=neon&logo=telegram&label=chat&url=https%3A%2F%2Ftg.sumanjay.workers.dev%2Fbeacon_kit)](https://t.me/beacon_kit)
[![X Follow](https://img.shields.io/twitter/follow/berachain)](https://x.com/berachain)
[![Discord](https://img.shields.io/discord/924442927399313448?label=discord)](https://discord.gg/berachain)

</div>

Expand All @@ -45,7 +46,7 @@ BeaconKit is able to support all 6 major Ethereum execution clients:

- [Docker](https://docs.docker.com/engine/install/)
- [Golang 1.23.0+](https://go.dev/doc/install)
- [Foundry](https://book.getfoundry.sh/getting-started/installation)
- [Foundry](https://book.getfoundry.sh/)

Start by opening two terminals side-by-side:

Expand Down
4 changes: 2 additions & 2 deletions kurtosis/src/services/blutgang/launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ BLUTGANG_CONFIG_MOUNT_DIRPATH_ON_SERVICE = "/config"
IMAGE_NAME = "makemake1337/blutgang:latest"

# The min/max CPU/memory that blutgang can use
MIN_CPU = 1000
MIN_CPU = 0
MAX_CPU = 8000
MIN_MEMORY = 1024
MIN_MEMORY = 0
MAX_MEMORY = 8096

USED_PORTS = {
Expand Down
4 changes: 2 additions & 2 deletions testing/e2e/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func defaultValidators() NodeSet {
},
{
ElType: "besu",
Replicas: 1,
Replicas: 0, // Besu causing flakey tests.
KZGImpl: "crate-crypto/go-kzg-4844",
},
},
Expand Down Expand Up @@ -267,7 +267,7 @@ func defaultExecutionSettings() ExecutionSettings {
Specs: NodeSpecs{
MinCPU: 0,
MaxCPU: 0,
MinMemory: 1024, //nolint:mnd // 1 GB
MinMemory: 0,
MaxMemory: 2048, //nolint:mnd // 2 GB
},
Images: map[string]string{
Expand Down

0 comments on commit 86e901f

Please sign in to comment.