소스 검색

Remove logging

Janus 4 년 전
부모
커밋
6463a43b5b
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/service/btc.rs

+ 0 - 1
src/service/btc.rs

@@ -62,7 +62,6 @@ impl Keypair {
 
         bytes[..SECRET_KEY_SIZE].copy_from_slice(self.secret.as_ref());
         bytes[SECRET_KEY_SIZE..].copy_from_slice(&self.public.serialize());
-        debug!(target: "BTC BRIDGE", "Keypair to bytes: {:?}", bytes);
 
         bytes
     }