Skip to content

Commit

Permalink
Merge pull request #404 from celo-org/jcortejoso/op-geth
Browse files Browse the repository at this point in the history
[op-geth]: Remove duplicate flag
  • Loading branch information
jcortejoso authored Oct 7, 2024
2 parents 53678c3 + e8f86f3 commit e7d01e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/op-geth/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: op-geth
apiVersion: v2
version: 0.3.3
version: 0.3.4
description: Celo implementation for op-geth execution engine (Optimism Rollup)
home: https://clabs.co
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/op-geth/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# op-geth

![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)
![Version: 0.3.4](https://img.shields.io/badge/Version-0.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)

Celo implementation for op-geth execution engine (Optimism Rollup)
Initially based on [dysnix/charts/op-geth](https://github.com/dysnix/charts/tree/main/dysnix/op-geth).
Expand Down
8 changes: 1 addition & 7 deletions charts/op-geth/templates/scripts/_init-genesis.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,8 @@ if [ ! -f $datadir/.initialized ]; then
{{- end }}
{{- if .Values.init.genesis.enabled }}
wget -qO $datadir/genesis.json "{{ .Values.init.genesis.url }}"
{{- $stateScheme := "" }}
{{- if .Values.config.state }}
{{- if .Values.config.state.scheme }}
{{- $stateScheme = printf " --state.scheme=%s" .Values.config.state.scheme }}
{{- end }}
{{- end }}
geth \
--datadir={{ .Values.config.datadir }}{{ $stateScheme }} \
--datadir={{ .Values.config.datadir }} \
{{- with .Values.init.extraArgs }}
{{- range . }}
{{- tpl (.) $ | nindent 6 }} \
Expand Down

0 comments on commit e7d01e7

Please sign in to comment.