Skip to content

Commit

Permalink
fixup! Include validator avatar in their medatada
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Jan 3, 2024
1 parent be37c60 commit 2cc1250
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions wasm/wasm_source/src/vp_user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@ mod tests {
description: None,
website: None,
discord_handle: None,
avatar: None,
};
tx::ctx().become_validator(args).unwrap();
});
Expand Down Expand Up @@ -792,6 +793,7 @@ mod tests {
Some("desc".to_owned()),
Some("website".to_owned()),
Some("discord".to_owned()),
Some("avatar".to_owned()),
Some(Dec::new(6, 2).unwrap()),
)
.unwrap();
Expand Down Expand Up @@ -972,6 +974,7 @@ mod tests {
description: None,
website: None,
discord_handle: None,
avatar: None,
};
tx::ctx().become_validator(args).unwrap();
});
Expand Down Expand Up @@ -1076,6 +1079,7 @@ mod tests {
Some("desc".to_owned()),
Some("website".to_owned()),
Some("discord".to_owned()),
Some("avatar".to_owned()),
Some(Dec::new(6, 2).unwrap()),
)
.unwrap();
Expand Down

0 comments on commit 2cc1250

Please sign in to comment.