Skip to content

Commit

Permalink
update a5 rpc url
Browse files Browse the repository at this point in the history
  • Loading branch information
zkrollupdev committed Sep 14, 2023
1 parent 8105b1b commit 6736053
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name_list:
- taikoA4
- taikoA3
- taikoA5

rpc_url_list:
- https://rpc.l3test.taiko.xyz
- https://rpc.test.taiko.xyz/
- https://rpc.jolnir.taiko.xyz/


2 changes: 1 addition & 1 deletion run-prover.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ POOL_ENDPOINT=lb-l9v5oowm-7dniy23pbxa4sqlz.clb.na-siliconvalley.tencentclb.com:1
if [ ! -f "./kzg_bn254_22.srs" ];then
wget https://storage.googleapis.com/zkevm-circuits-keys/kzg_bn254_22.srs -P ./
else
echo "kzg parameter kzg_bn254_21.srs exist"
echo "kzg parameter kzg_bn254_22.srs exist"
fi

chmod +x ./zkpool-prover
Expand Down
5 changes: 2 additions & 3 deletions src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl Prover {

info!("receive task,project name is:{},task id is:{},task content is:{}",project_name.clone(),block,task_content);

if project_name.clone()=="taikoA4".to_string(){
if project_name.clone()=="taikoA5".to_string(){
let l2_rpc = project_info.rpc_url;
let task_vec: Vec<&str> = task_content.split("#").collect(); //Parse the task content
if task_vec.len() != 14{
Expand Down Expand Up @@ -227,9 +227,8 @@ impl Prover {
let mut queue = task_handle_vec.lock().await;
queue.push(task_handle);
});
}else if project_name=="taikoA3".to_string(){
}else{
info!("ignore the unrecognized {} task",project_name);

}
info!("******one block task in process********");
}
Expand Down

0 comments on commit 6736053

Please sign in to comment.