Update output msg

This commit is contained in:
onyinyang 2023-08-30 11:35:27 -04:00
parent 25add69c4d
commit a31ed0a4e5
No known key found for this signature in database
GPG Key ID: 156A6435430C2036
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ pub fn parse_into_buckets(
let mut bucket = [BridgeLine::default(); MAX_BRIDGES_PER_BUCKET];
let mut leftovers: Vec<BridgeLine> = Vec::new();
for bridgeline in bridgelines.clone() {
println!("What is the bridgeline: {:?}", bridgeline);
println!("Added bridge with fingerprint: {:?}", bridgeline.uid_fingerprint);
if count < MAX_BRIDGES_PER_BUCKET {
bucket[count] = bridgeline;
count += 1;