Update nssa/src/program.rs

Co-authored-by: Daniil Polyakov <arjentix@gmail.com>
This commit is contained in:
Sergio Chouhy 2025-12-02 10:50:06 -03:00 committed by GitHub
parent bfbd50e8cb
commit fdc53927ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -107,7 +107,7 @@ impl Program {
pub fn pinata_token() -> Self {
use crate::program_methods::PINATA_TOKEN_ELF;
Self::new(PINATA_TOKEN_ELF.to_vec()).unwrap()
Self::new(PINATA_TOKEN_ELF.to_vec()).expect("pinata token elf is defined in risc0 build of `program_methods`")
}
}