Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] remove rogue dbg!() #187

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion arithmetic_macros/src/optree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ mod test {
#[test]
fn add_mul3() {
let ot = parse!("a * A + b * B + c * C");
dbg!(&ot);
assert!(
matches!(ot, OpTree::Infix(Infix { lhs, rhs, kind: InfixKind::Add }) if
matches!(&*lhs.tree, OpTree::Infix(Infix { lhs, rhs, kind: InfixKind::Add })
Expand Down
1 change: 0 additions & 1 deletion schnorr_fun/src/frost/share.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ mod share_backup {
.ok_or(ShareDecodeError::InvalidHumanReadablePrefix)?;

let has_parenthetical = !tail.is_empty();
dbg!(has_parenthetical);
let hr_index = if has_parenthetical {
let tail = tail
.strip_prefix('[')
Expand Down
Loading