refactor: remove unneded functions

This commit is contained in:
0xalivecow 2024-10-20 21:17:19 +02:00
parent 24611a2357
commit c416547067
No known key found for this signature in database
3 changed files with 3 additions and 21 deletions

View file

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