Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(contract-verifier): Support Solidity contracts with EVM bytecode in contract verifier #3225

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use DalResults in verification DAL
  • Loading branch information
slowli committed Nov 4, 2024
commit 034f9c66229fbbf19fd607e16dbbb12b822aba92
8 changes: 4 additions & 4 deletions core/lib/contract_verifier/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ impl ContractVerifier {
};
storage
.contract_verification_dal()
.save_verification_error(request_id, error_message, compilation_errors, None)
.save_verification_error(request_id, &error_message, &compilation_errors, None)
.await?;
tracing::info!("Request with id = {request_id} was failed");
}
Expand Down Expand Up @@ -547,9 +547,9 @@ impl JobProcessor for ContractVerifier {
.contract_verification_dal()
.save_verification_error(
job_id,
"Internal error".to_string(),
serde_json::Value::Array(Vec::new()),
Some(error),
"Internal error",
&serde_json::Value::Array(Vec::new()),
Some(&error),
)
.await
.unwrap();
Expand Down
Loading