Skip to content

Commit

Permalink
fix: var zkevm_path_rw_data is defined in kurtosis/main but not yet o…
Browse files Browse the repository at this point in the history
…n 0.2.8, try to override it
  • Loading branch information
joanestebanr committed Nov 8, 2024
1 parent a8f6872 commit e106faf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions scripts/local_config
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,10 @@ EOF
###############################################################################
function create_dest_folder(){
export DEST=${TMP_CDK_FOLDER}/local_config
export path_rw_data=${TMP_CDK_FOLDER}/runtime
export zkevm_path_rw_data=${TMP_CDK_FOLDER}/runtime
[ ! -d ${DEST} ] && mkdir -p ${DEST}
rm $DEST/*
mkdir $path_rw_data
mkdir $zkevm_path_rw_data
}
###############################################################################
function download_kurtosis_artifacts(){
Expand Down Expand Up @@ -447,4 +447,4 @@ EOF
echo " -----------------------------------------------------------"
echo " "
echo " - rembember to clean previous execution data: "
echo " rm -Rf ${path_rw_data}/*"
echo " rm -Rf ${zkevm_path_rw_data}/*"
1 change: 1 addition & 0 deletions test/combinations/fork11-rollup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ args:
zkevm_use_gas_token_contract: true
data_availability_mode: rollup
sequencer_type: erigon
zkevm_path_rw_data: /tmp/
1 change: 1 addition & 0 deletions test/combinations/fork12-cdk-validium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ args:
zkevm_use_gas_token_contract: true
data_availability_mode: cdk-validium
sequencer_type: erigon
zkevm_path_rw_data: /tmp/
4 changes: 2 additions & 2 deletions test/config/kurtosis-cdk-node-config.toml.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PathRWData = "{{.path_rw_data}}/"
PathRWData = "{{.zkevm_path_rw_data}}/"
L1URL="{{.l1_rpc_url}}"
L2URL="http://{{.l2_rpc_name}}{{.deployment_suffix}}:{{.zkevm_rpc_http_port}}"
AggLayerURL="{{.agglayer_url}}"
Expand Down Expand Up @@ -67,6 +67,6 @@ Outputs = ["stderr"]
[AggSender]
CertificateSendInterval = "1m"
CheckSettledInterval = "5s"
SaveCertificatesToFilesPath = "{{.path_rw_data}}/"
SaveCertificatesToFilesPath = "{{.zkevm_path_rw_data}}/"


0 comments on commit e106faf

Please sign in to comment.