pub trait FeeAccount { // Required methods fn pubkey(&self) -> Pubkey; fn init(&mut self, worker: Pubkey) -> Result<()>; }
Trait for reading and writing to a fee account.
Get the pubkey of the fee account.
Initialize the account to hold fee object.