Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
correct and incorrect to u16 from u8
Browse files Browse the repository at this point in the history
  • Loading branch information
goastler committed May 30, 2023
1 parent 628bde3 commit 420e696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/captcha/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ pub mod captcha {
#[derive(PartialEq, Debug, Eq, Clone, scale::Encode, scale::Decode, Copy)]
#[cfg_attr(feature = "std", derive(scale_info::TypeInfo, StorageLayout))]
pub struct UserHistorySummary {
pub correct: u8,
pub incorrect: u8,
pub correct: u16,
pub incorrect: u16,
pub score: u8,
}

Expand Down

0 comments on commit 420e696

Please sign in to comment.