In your code you might need <'info>
#[account]
pub struct NewAccount<'info> { //add the lifetime specifier here, the <'info> thang
pub entries: u64,
pub keys: [&[u8]],
}
At least that's my guess. Try that out maybe it will fix your problem. Lifetime specifiers are still something fresh to me.