| 246 | |
| 247 | #[account] |
| 248 | pub struct Question { |
| 249 | pub question: String, |
| 250 | pub ans_counter: u8, |
| 251 | pub deadline: i64, |
| 252 | pub winner_idx: u8, |
| 253 | pub winner_selected: bool, |
| 254 | } |
| 255 | |
| 256 | #[account] |
| 257 | pub struct Answer { |
nothing calls this directly
no outgoing calls
no test coverage detected