Skip to content

Commit

Permalink
fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
peinlcy committed Feb 2, 2024
1 parent fe7a4ad commit 67be453
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion circuits/src/stark/ola_stark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,6 @@ mod tests {
use core::types::merkle_tree::{encode_addr, tree_key_default};
use core::types::{Field, GoldilocksField};
use core::vm::transaction::init_tx_context_mock;
use std::process::exit;
use executor::load_tx::init_tape;
use executor::trace::{gen_storage_hash_table, gen_storage_table};
use executor::{BatchCacheManager, Process};
Expand All @@ -677,6 +676,7 @@ mod tests {
use std::io::{BufRead, BufReader};
use std::mem;
use std::path::PathBuf;
use std::process::exit;
use std::sync::{Arc, Mutex};
use std::time::{Duration, Instant};

Expand Down
2 changes: 1 addition & 1 deletion core/src/merkle_tree/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::types::merkle_tree::{
use crate::utils::{deserialize_block_number, serialize_block_number, serialize_tree_leaf};
use byteorder::{BigEndian, ByteOrder, ReadBytesExt};
use itertools::Itertools;
use log::info;
use log::{debug, info};
use plonky2::field::goldilocks_field::GoldilocksField;
use plonky2::field::types::Field;
use rocksdb::WriteBatch;
Expand Down
4 changes: 1 addition & 3 deletions plonky2/plonky2/src/gadgets/lookup.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
use crate::field::extension::Extendable;
use crate::gates::lookup::BitwiseLookupGate;
use crate::gates::lookup_table::{
BitwiseLookupTable, BitwiseLookupTableGate,
};
use crate::gates::lookup_table::{BitwiseLookupTable, BitwiseLookupTableGate};
use crate::gates::noop::NoopGate;
use crate::hash::hash_types::RichField;
use crate::iop::target::Target;
Expand Down

0 comments on commit 67be453

Please sign in to comment.