Files
solana/sdk/src/loader_transaction.rs

48 lines
1.1 KiB
Rust
Raw Normal View History

2018-12-04 15:18:35 -08:00
//! The `loader_transaction` module provides functionality for loading and calling a program
2018-12-14 20:39:10 -08:00
use crate::hash::Hash;
use crate::loader_instruction::LoaderInstruction;
use crate::pubkey::Pubkey;
use crate::signature::Keypair;
use crate::transaction::Transaction;
pub struct LoaderTransaction {}
impl LoaderTransaction {
pub fn new_write(
from_keypair: &Keypair,
loader: Pubkey,
offset: u32,
bytes: Vec<u8>,
2019-03-02 10:25:16 -08:00
recent_blockhash: Hash,
fee: u64,
) -> Transaction {
let instruction = LoaderInstruction::Write { offset, bytes };
2019-03-02 10:20:10 -08:00
Transaction::new(
from_keypair,
&[],
loader,
&instruction,
2019-03-02 10:25:16 -08:00
recent_blockhash,
2019-03-02 10:20:10 -08:00
fee,
)
}
pub fn new_finalize(
from_keypair: &Keypair,
loader: Pubkey,
2019-03-02 10:25:16 -08:00
recent_blockhash: Hash,
fee: u64,
) -> Transaction {
let instruction = LoaderInstruction::Finalize;
2019-03-02 10:20:10 -08:00
Transaction::new(
from_keypair,
&[],
loader,
&instruction,
2019-03-02 10:25:16 -08:00
recent_blockhash,
2019-03-02 10:20:10 -08:00
fee,
)
}
}