(request: proto::transaction::TransactionBatch)
| 26 | type Output = proto::blockchain::BlockNumber; |
| 27 | |
| 28 | fn decode(request: proto::transaction::TransactionBatch) -> tonic::Result<Self::Input> { |
| 29 | Ok(SubmitProvenTxBatchInput { |
| 30 | request, |
| 31 | is_authorized_network_tx: false, |
| 32 | original_accept_header: None, |
| 33 | }) |
| 34 | } |
| 35 | |
| 36 | fn encode(output: Self::Output) -> tonic::Result<proto::blockchain::BlockNumber> { |
| 37 | Ok(output) |
nothing calls this directly
no outgoing calls
no test coverage detected