Parse what Tendermint returns in the `data` field of [`DeliverTx`] as raw bytes. Only call this after the `code` of both [`DeliverTx`] and [`CheckTx`] have been inspected!
(deliver_tx: &DeliverTx)
| 31 | /// |
| 32 | /// Only call this after the `code` of both [`DeliverTx`] and [`CheckTx`] have been inspected! |
| 33 | pub fn decode_bytes(deliver_tx: &DeliverTx) -> anyhow::Result<RawBytes> { |
| 34 | decode_data(&deliver_tx.data) |
| 35 | } |
| 36 | |
| 37 | /// Parse what Tendermint returns in the `data` field of [`DeliverTx`] as [`CreateReturn`]. |
| 38 | pub fn decode_fevm_create(deliver_tx: &DeliverTx) -> anyhow::Result<CreateReturn> { |
no test coverage detected