Skip to content

Commit

Permalink
fix(core,host,tasks): save files after rename
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 committed Sep 2, 2024
1 parent a05921c commit 250aa67
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl Raiko {
fn get_preflight_data(&self) -> PreflightData {
PreflightData::new(
self.request.block_number,
self.request.l1_inclusive_block_number,
self.request.l1_inclusion_block_number,
self.l1_chain_spec.to_owned(),
self.taiko_chain_spec.to_owned(),
TaikoProverData {
Expand Down Expand Up @@ -325,7 +325,7 @@ mod tests {

let proof_request = ProofRequest {
block_number,
l1_inclusive_block_number: 80,
l1_inclusion_block_number: 80,
network,
graffiti: B256::ZERO,
prover: Address::ZERO,
Expand Down Expand Up @@ -354,7 +354,7 @@ mod tests {

let proof_request = ProofRequest {
block_number,
l1_inclusive_block_number: 0,
l1_inclusion_block_number: 0,
network,
graffiti: B256::ZERO,
prover: Address::ZERO,
Expand Down Expand Up @@ -392,7 +392,7 @@ mod tests {
);
let proof_request = ProofRequest {
block_number,
l1_inclusive_block_number: 0,
l1_inclusion_block_number: 0,
network,
graffiti: B256::ZERO,
prover: Address::ZERO,
Expand Down Expand Up @@ -425,7 +425,7 @@ mod tests {
);
let proof_request = ProofRequest {
block_number,
l1_inclusive_block_number: 0,
l1_inclusion_block_number: 0,
network,
graffiti: B256::ZERO,
prover: Address::ZERO,
Expand Down
2 changes: 1 addition & 1 deletion host/src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ mod test {
proof_type: ProofType::Native,
blob_proof_type: BlobProofType::KzgVersionedHash,
prover_args: Default::default(),
l1_inclusive_block_number: 0,
l1_inclusion_block_number: 0,
};
let raiko = Raiko::new(
l1_chain_spec.clone(),
Expand Down
2 changes: 1 addition & 1 deletion host/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ pub async fn make_request() -> anyhow::Result<ProofRequestOpt> {

Ok(ProofRequestOpt {
block_number: Some(block_number),
l1_inclusive_block_number: None,
l1_inclusion_block_number: None,
network: Some("taiko_mainnet".to_owned()),
l1_network: Some("ethereum".to_string()),
graffiti: Some(
Expand Down
2 changes: 1 addition & 1 deletion tasks/tests/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ mod tests {
proof_type,
prover_args,
blob_proof_type: BlobProofType::ProofOfEquivalence,
l1_inclusive_block_number: 0,
l1_inclusion_block_number: 0,
},
)
}
Expand Down

0 comments on commit 250aa67

Please sign in to comment.