Skip to content

Commit

Permalink
Remove is_authorized log println (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
rimrakhimov authored Oct 31, 2023
1 parent e8c7659 commit 5f41f81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub async fn verify(
request: VerificationRequest<StandardJson>,
) -> Result<Source, Error> {
let is_authorized = request.is_authorized;
println!("\n\nRAFLA: is_authorized={is_authorized}\n\n");

let bytecode_type = request.bytecode_type;
let raw_request_bytecode = hex::decode(request.bytecode.clone().trim_start_matches("0x"))
.map_err(|err| Error::InvalidArgument(format!("invalid bytecode: {err}")))?;
Expand Down

0 comments on commit 5f41f81

Please sign in to comment.