Skip to content

Commit b4658fe

Browse files
committed
chore: rustfmt
1 parent 9884a44 commit b4658fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vrf/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use digest::{Output, OutputSizeUser};
22

33
pub trait Proof<H>
4-
where
4+
where
55
H: OutputSizeUser,
66
{
77
fn to_hash(&self) -> Output<H>;
@@ -12,7 +12,7 @@ where
1212
H: OutputSizeUser,
1313
{
1414
type Proof: Proof<H>;
15-
15+
1616
fn prove(&self, alpha: &[u8]) -> Self::Proof;
1717
}
1818

@@ -21,6 +21,6 @@ where
2121
H: OutputSizeUser,
2222
{
2323
type Proof: Proof<H>;
24-
24+
2525
fn verify(&self, alpha: &[u8], proof: Self::Proof) -> bool;
2626
}

0 commit comments

Comments
 (0)