Type Alias hedera::ScheduleDeleteTransaction

source ·
pub type ScheduleDeleteTransaction = Transaction<ScheduleDeleteTransactionData>;
Expand description

Marks a schedule in the network’s action queue as deleted. Must be signed by the admin key of the target schedule. A deleted schedule cannot receive any additional signing keys, nor will it be executed.

Aliased Type§

struct ScheduleDeleteTransaction { /* private fields */ }

Implementations§

source§

impl ScheduleDeleteTransaction

source

pub fn get_schedule_id(&self) -> Option<ScheduleId>

Returns the schedule to delete.

source

pub fn schedule_id(&mut self, id: ScheduleId) -> &mut Self

Sets the schedule to delete.