solana-course icon indicating copy to clipboard operation
solana-course copied to clipboard

Module 3.3 - State Management - MovieAccountState struct's fields in wrong order

Open Ikrk opened this issue 3 years ago • 0 comments

MovieAccountState struct's fields are in wrong order causing a bug in GUI (description is used as title and vice-versa)

pub struct MovieAccountState {
    pub is_initialized: bool,
    pub rating: u8,
    pub description: String,
    pub title: String
}

should be

pub struct MovieAccountState {
    pub is_initialized: bool,
    pub rating: u8,
    pub title: String,
    pub description: String  
}

Ikrk avatar Sep 26 '22 08:09 Ikrk