pub trait NodeAccount {
    fn new(
        &mut self,
        id: u64,
        owner: &mut Signer<'_>,
        stake: &mut Account<'_, TokenAccount>,
        worker: &Signer<'_>
    ) -> Result<()>; }
Expand description

NodeAccount

Required Methods

Implementations on Foreign Types

Implementors