Skip to content

Commit

Permalink
fix for apple silicon, bump besu to 24.8.0
Browse files Browse the repository at this point in the history
Signed-off-by: garyschulte <[email protected]>
  • Loading branch information
garyschulte committed Aug 23, 2024
1 parent 0704f10 commit 82035ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ images:
geth: "ethereum/client-go:v1.14.5"
reth: "ghcr.io/paradigmxyz/reth:v0.2.0-beta.9"
erigon: "thorax/erigon:v2.60.1"
besu: "hyperledger/besu:24.6.0"
besu: "hyperledger/besu:24.8.0"
2 changes: 2 additions & 0 deletions scripts/besu/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ services:
command:
- --genesis-file=/tmp/chainspec/chainspec.json
- --bonsai-historical-block-limit=10000
- --bonsai-limit-trie-logs-enabled=false
- --Xbonsai-parallel-tx-processing-enabled=true
- --data-path=/var/lib/besu/data
- --metrics-enabled=true
- --metrics-host=0.0.0.0
Expand Down
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def print_computer_specs():
'RAM': f'{psutil.virtual_memory().total / (1024 ** 3):.2f} GB',
'CPU': cpu['brand_raw'],
'Numbers of CPU': cpu['count'],
'CPU GHz': cpu['hz_actual_friendly']
'CPU GHz': cpu.get('hz_actual_friendly', 'N/A')
}

# Print the specifications
Expand Down

0 comments on commit 82035ac

Please sign in to comment.