Skip to content

Commit

Permalink
Do not log mpn transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
keyvank committed Jul 4, 2023
1 parent 2d90134 commit 270f005
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/mpn/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,6 @@ pub fn prepare_works<K: KvStore, B: Blockchain<K>>(
true,
)?;
log::info!("Made MPN-Deposit block of {} txs.", transitions.len());
for (i, tx) in transitions.iter().enumerate() {
log::info!("MPN-Deposit tx {}: {:?}", i, tx.tx);
}
works.push(MpnWork {
config: config.clone(),
public_inputs,
Expand All @@ -382,9 +379,6 @@ pub fn prepare_works<K: KvStore, B: Blockchain<K>>(
&mut new_account_indices,
)?;
log::info!("Made MPN-Withdraw block of {} txs.", transitions.len());
for (i, tx) in transitions.iter().enumerate() {
log::info!("MPN-Withdraw tx {}: {:?}", i, tx.tx);
}
works.push(MpnWork {
config: config.clone(),
public_inputs,
Expand All @@ -406,9 +400,6 @@ pub fn prepare_works<K: KvStore, B: Blockchain<K>>(
&mut new_account_indices,
)?;
log::info!("Made MPN-Update block of {} txs.", transitions.len());
for (i, tx) in transitions.iter().enumerate() {
log::info!("MPN-Update tx {}: {:?}", i, tx.tx);
}
works.push(MpnWork {
config: config.clone(),
public_inputs,
Expand Down

0 comments on commit 270f005

Please sign in to comment.