(
&self,
txs: Vec<Transaction>,
py: Python,
)
| 97 | } |
| 98 | |
| 99 | pub fn decode_transactions_input_sync( |
| 100 | &self, |
| 101 | txs: Vec<Transaction>, |
| 102 | py: Python, |
| 103 | ) -> Vec<Option<Vec<DecodedSolValue>>> { |
| 104 | txs.into_iter() |
| 105 | .map(|tx| self.decode_impl(tx.input?.as_str(), py)) |
| 106 | .collect() |
| 107 | } |
| 108 | |
| 109 | pub fn decode_traces_input_sync( |
| 110 | &self, |
no test coverage detected