From 3d00a4aa5d17b43c5725e0173bad22bd6a38ae58 Mon Sep 17 00:00:00 2001 From: Rim Rakhimov Date: Tue, 31 Oct 2023 12:57:03 +0300 Subject: [PATCH] Remove is_authorized log println --- .../src/verification/handlers/solidity_standard_json.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth-bytecode-db/eth-bytecode-db/src/verification/handlers/solidity_standard_json.rs b/eth-bytecode-db/eth-bytecode-db/src/verification/handlers/solidity_standard_json.rs index 65eec8d12..7abcaf14f 100644 --- a/eth-bytecode-db/eth-bytecode-db/src/verification/handlers/solidity_standard_json.rs +++ b/eth-bytecode-db/eth-bytecode-db/src/verification/handlers/solidity_standard_json.rs @@ -31,7 +31,7 @@ pub async fn verify( request: VerificationRequest, ) -> Result { 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}")))?;