diff --git a/charts/rollups-node/templates/dapp-configmap.yaml b/charts/rollups-node/templates/dapp-configmap.yaml index 0f418a3..9899283 100644 --- a/charts/rollups-node/templates/dapp-configmap.yaml +++ b/charts/rollups-node/templates/dapp-configmap.yaml @@ -15,7 +15,5 @@ data: { "address": {{ required "A valid .Values.dapp.contractAddress is required" .Values.dapp.contractAddress | quote }}, "blockHash": {{ required "A valid .Values.dapp.blockHash is required" .Values.dapp.blockHash | quote }}, - "blockNumber": {{ required "A valid .Values.dapp.blockNumber is required" .Values.dapp.blockNumber | int64 | quote }}, - "transactionHash": {{ required "A valid .Values.dapp.transactionHash is required" .Values.dapp.transactionHash | quote }} } {{ end -}} diff --git a/charts/rollups-node/values.yaml b/charts/rollups-node/values.yaml index 605f581..d600f7a 100644 --- a/charts/rollups-node/values.yaml +++ b/charts/rollups-node/values.yaml @@ -13,12 +13,6 @@ dapp: # -- the block hash of the block where the dapp was deployed # (REQUIRED) blockHash: - # -- the block number of the block where the dapp was deployed - # (REQUIRED) - blockNumber: - # -- dapp.transactionHash is the transaction hash of the transaction that deployed the dapp - # (REQUIRED) - transactionHash: # -- mnemonic defines the configuration for the mnemonic # use value or secretRef, never both