我想在我的锚程序中实现链表类型的数据结构。然而,我无法让自己理解如何使用嵌套帐户。以下是我正在使用的代码:
#[derive(Accounts)]
pub struct Create<'info> {
#[account(init, payer = user, space = 8 + 32 + 8 + 8 + 32 )]
pub endpoint: Account<'info, Endpoint>,
#[account(mut)]
pub user: Signer<'info>,
pub system_program: Program<'info, System>,
}
#[derive(Accounts)]
pub struct Update<'info> {
pub authority: Signer<'info>,
#[account(mut, has_one = authority)]
pub endpoint: Account<'info, Endpoint>,
}
#[account]
pub struct Endpoint {
pub authority: Pubkey,
pub data: u64,
pub len: u64,
pub next: Endpoint
}
impl Endpoint {
pub fn push(&mut self, data:u64){
if self.len == 0 {
self.data = data;
} else {
// Recursion to push data into the next node
}
self.len += 1;
}
}
我想实现的是,名为Endpoint的帐户有一个名为"next"的参数,用于存储另一个Endpoint帐户。
不,你不能那样做。
您无法查询链上的帐户。只有当你把账户放在指令中时,你才能阅读账户。在Anchor中,可以与之交互的帐户是Context
中的帐户。
另一种方法是,您可以分配一个存储结构数组的数据帐户。因此,您可以读取数组中的所有结构别忘了数据帐户大小无法调整,所以请确保根据需要进行分配