1use crate::records::block::Block; 2use crate::type_aliases::instr_id::InstrId; 3use alloc::vec::Vec; 4 5pub fn block_get_instructions(block: &Block) -> &Vec<InstrId> { 6 &block.instructions 7}