Returns true if the type of the block is [BlockType::ABISig].
(&self)
| 176 | |
| 177 | /// Returns true if the type of the block is [BlockType::ABISig]. |
| 178 | pub fn is_sig(&self) -> bool { |
| 179 | match self { |
| 180 | Self::ABISig(_) => true, |
| 181 | _ => false, |
| 182 | } |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | /// The expected value and machine stack state when entering and exiting the block. |
no outgoing calls
no test coverage detected