Skip to content

Commit

Permalink
rm dead commas
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Jul 14, 2024
1 parent 8c8e286 commit 9dc64d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/delano-keys/src/kdf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,15 @@ mod basic_test {
// vk should match the expanded Keys
assert_eq!(
vk,
vec![vk::VK::G1(pk_g1), vk::VK::G2(pk_g2_0), vk::VK::G2(pk_g2_1),]
vec![vk::VK::G1(pk_g1), vk::VK::G2(pk_g2_0), vk::VK::G2(pk_g2_1)]
);

assert_eq!(
vk,
vec![
vk::VK::G1(account.pk_g1),
vk::VK::G2(blastkids::kdf::ckd_pk_normal::<G2>(&account.pk_g2, 0)),
vk::VK::G2(blastkids::kdf::ckd_pk_normal::<G2>(&account.pk_g2, 1)),
vk::VK::G2(blastkids::kdf::ckd_pk_normal::<G2>(&account.pk_g2, 1))
]
);
}
Expand Down

0 comments on commit 9dc64d4

Please sign in to comment.