Skip to content

Commit 818c5f6

Browse files
fix: fix back-compat on PartialVdf field ordering
1 parent aca1913 commit 818c5f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keyvalues-parser/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ impl<'text> From<PartialVdf<'text>> for Vdf<'text> {
8686
// TODO: don't expose these publicly?
8787
#[derive(Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
8888
pub struct PartialVdf<'text> {
89-
pub bases: Vec<Cow<'text, str>>,
9089
pub key: Key<'text>,
9190
pub value: Value<'text>,
91+
pub bases: Vec<Cow<'text, str>>,
9292
}
9393

9494
impl<'text> Vdf<'text> {

0 commit comments

Comments
 (0)