(
&self,
inputs: Vec<String>,
py: Python,
)
| 86 | } |
| 87 | |
| 88 | pub fn decode_inputs_sync( |
| 89 | &self, |
| 90 | inputs: Vec<String>, |
| 91 | py: Python, |
| 92 | ) -> Vec<Option<Vec<DecodedSolValue>>> { |
| 93 | inputs |
| 94 | .into_iter() |
| 95 | .map(|input| self.decode_impl(input.as_str(), py)) |
| 96 | .collect() |
| 97 | } |
| 98 | |
| 99 | pub fn decode_transactions_input_sync( |
| 100 | &self, |
no test coverage detected