Skip to content

Commit

Permalink
fix: debug output cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hko-s committed Jan 31, 2024
1 parent 5a1e8c7 commit 4e7ba07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/params/public.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,8 @@ impl fmt::Debug for PublicParams {
} => f
.debug_struct("PublicParams::Elgamal")
.field("p", &p)
.field("g", &y)
.field("y", &g)
.field("g", &g)
.field("y", &y)
.finish(),

PublicParams::EdDSA { ref curve, ref q } => f
Expand Down

0 comments on commit 4e7ba07

Please sign in to comment.