Skip to content

Commit

Permalink
remove dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
SWvheerden committed Aug 2, 2022
1 parent cfb2fe8 commit 79a8b1d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion base_layer/core/src/transactions/test_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@ pub fn create_random_signature_from_s_key(
let p = PK::from_secret_key(&s_key);
let tx_meta = TransactionMetadata::new_with_features(fee, lock_height, features);
let e = TransactionKernel::build_kernel_challenge_from_tx_meta(&PublicKey::from_secret_key(&r), &p, &tx_meta);
dbg!(&e.to_hex());
(p, Signature::sign(s_key, r, &e).unwrap())
}

Expand Down
1 change: 0 additions & 1 deletion base_layer/core/tests/helpers/block_builders.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ fn print_new_genesis_block(network: Network) {
.with_features(KernelFeatures::COINBASE_KERNEL)
.build()
.unwrap();
dbg!(&kernel);

header.kernel_mr = kernel.hash();
header.kernel_mmr_size += 1;
Expand Down

0 comments on commit 79a8b1d

Please sign in to comment.