Create a [BlockType::ABISig].
(sig: ABISig)
| 171 | |
| 172 | /// Create a [BlockType::ABISig]. |
| 173 | pub fn sig(sig: ABISig) -> Self { |
| 174 | Self::ABISig(sig) |
| 175 | } |
| 176 | |
| 177 | /// Returns true if the type of the block is [BlockType::ABISig]. |
| 178 | pub fn is_sig(&self) -> bool { |
no test coverage detected