From 9690e7f95c1e831d54c3864c855030f4f786db89 Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Sat, 12 Oct 2024 00:24:15 -0500 Subject: [PATCH] remove redundant program msg!() --- programs/protocol-contracts-solana/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/programs/protocol-contracts-solana/src/lib.rs b/programs/protocol-contracts-solana/src/lib.rs index 040dc39..c0b87d0 100644 --- a/programs/protocol-contracts-solana/src/lib.rs +++ b/programs/protocol-contracts-solana/src/lib.rs @@ -231,7 +231,6 @@ pub mod gateway { ); let address = recover_eth_address(&message_hash, recovery_id, &signature)?; // ethereum address is the last 20 Bytes of the hashed pubkey - msg!("recovered address {:?}", address); if address != pda.tss_address { msg!("ECDSA signature error"); return err!(Errors::TSSAuthenticationFailed);