mirror of
https://github.com/iv-org/inv_sig_helper.git
synced 2024-11-22 21:49:42 +00:00
Remove unnecessary logs
This commit is contained in:
parent
bf22ef0462
commit
c42c71ff5d
@ -150,7 +150,7 @@ pub async fn process_decrypt_n_signature<W>(
|
||||
let cloned_writer = stream.clone();
|
||||
let global_state = state.clone();
|
||||
|
||||
println!("Signature to be decrypted: {}", sig);
|
||||
//println!("Signature to be decrypted: {}", sig);
|
||||
let interp = global_state.js_runtime_pool.acquire().await;
|
||||
|
||||
let cloned_interp = interp.clone();
|
||||
|
@ -102,7 +102,7 @@ where
|
||||
while let Some(opcode_res) = stream.next().await {
|
||||
match opcode_res {
|
||||
Ok(opcode) => {
|
||||
println!("Received job: {}", opcode.opcode);
|
||||
//println!("Received job: {}", opcode.opcode);
|
||||
|
||||
match opcode.opcode {
|
||||
JobOpcode::ForceUpdate => {
|
||||
|
@ -52,7 +52,7 @@ impl Decoder for OpcodeDecoder {
|
||||
&mut self,
|
||||
src: &mut tokio_util::bytes::BytesMut,
|
||||
) -> Result<Option<Self::Item>, Self::Error> {
|
||||
println!("Decoder length: {}", src.len());
|
||||
//println!("Decoder length: {}", src.len());
|
||||
if 5 > src.len() {
|
||||
return Ok(None);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user