mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-05-21 00:59:26 +00:00
nit
This commit is contained in:
parent
ce9cadc46d
commit
dcef017f9b
@ -639,7 +639,7 @@ mod tests {
|
|||||||
AccountWithMetadata {
|
AccountWithMetadata {
|
||||||
account: Account {
|
account: Account {
|
||||||
// Definition ID with
|
// Definition ID with
|
||||||
data: vec![0; TOKEN_DEFINITION_DATA_SIZE - 16]
|
data: [0; TOKEN_DEFINITION_DATA_SIZE - 16]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.chain(u128::to_le_bytes(1000))
|
.chain(u128::to_le_bytes(1000))
|
||||||
.collect(),
|
.collect(),
|
||||||
|
|||||||
@ -107,7 +107,8 @@ impl Program {
|
|||||||
|
|
||||||
pub fn pinata_token() -> Self {
|
pub fn pinata_token() -> Self {
|
||||||
use crate::program_methods::PINATA_TOKEN_ELF;
|
use crate::program_methods::PINATA_TOKEN_ELF;
|
||||||
Self::new(PINATA_TOKEN_ELF.to_vec()).expect("pinata token elf is defined in risc0 build of `program_methods`")
|
Self::new(PINATA_TOKEN_ELF.to_vec())
|
||||||
|
.expect("pinata token elf is defined in risc0 build of `program_methods`")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user