chore: claen up debug prints

This commit is contained in:
0xalivecow 2024-10-26 22:02:18 +02:00
parent 76cbe0d4c0
commit 32bc8725e2
No known key found for this signature in database
4 changed files with 23 additions and 43 deletions

View file

@ -36,7 +36,6 @@ pub fn get_coefficients(num: u128) -> Vec<u8> {
for shift in 0..128 {
//println!("{:?}", ((num >> shift) & 1));
if ((num >> shift) & 1) == 1 {
dbg!("Shift success");
powers.push(shift);
}
}