Skip to content

Commit

Permalink
chore: remove clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpwang committed Dec 28, 2023
1 parent f323d89 commit 395cc26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hashes/zkevm/src/keccak/vanilla/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::{
};
use halo2_base::utils::halo2::{raw_assign_advice, raw_assign_fixed};
use itertools::Itertools;
use log::{debug, info};
use log::info;
use rayon::prelude::{IntoParallelRefIterator, ParallelIterator};
use serde::{Deserialize, Serialize};
use std::marker::PhantomData;
Expand Down
2 changes: 1 addition & 1 deletion hashes/zkevm/src/keccak/vanilla/witness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ fn keccak<F: Field>(
.collect::<Vec<_>>()
})
.collect::<Vec<_>>();
debug!("hash: {:x?}", &(hash_bytes[0..4].concat()));
log::debug!("hash: {:x?}", &(hash_bytes[0..4].concat()));
assert_eq!(length, bytes.len());
}
}

0 comments on commit 395cc26

Please sign in to comment.