1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use bytes::Bytes;

use crate::prelude::*;

#[doc = include_str!("../doc/request-delivertx.md")]
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct DeliverTx {
    /// The bytes of the transaction to execute.
    pub tx: Bytes,
}

// =============================================================================
// Protobuf conversions
// =============================================================================

mod v0_34 {
    use super::DeliverTx;
    use tendermint_proto::v0_34 as pb;
    use tendermint_proto::Protobuf;

    impl From<DeliverTx> for pb::abci::RequestDeliverTx {
        fn from(deliver_tx: DeliverTx) -> Self {
            Self { tx: deliver_tx.tx }
        }
    }

    impl TryFrom<pb::abci::RequestDeliverTx> for DeliverTx {
        type Error = crate::Error;

        fn try_from(deliver_tx: pb::abci::RequestDeliverTx) -> Result<Self, Self::Error> {
            Ok(Self { tx: deliver_tx.tx })
        }
    }

    impl Protobuf<pb::abci::RequestDeliverTx> for DeliverTx {}
}

mod v0_37 {
    use super::DeliverTx;
    use tendermint_proto::v0_37 as pb;
    use tendermint_proto::Protobuf;

    impl From<DeliverTx> for pb::abci::RequestDeliverTx {
        fn from(deliver_tx: DeliverTx) -> Self {
            Self { tx: deliver_tx.tx }
        }
    }

    impl TryFrom<pb::abci::RequestDeliverTx> for DeliverTx {
        type Error = crate::Error;

        fn try_from(deliver_tx: pb::abci::RequestDeliverTx) -> Result<Self, Self::Error> {
            Ok(Self { tx: deliver_tx.tx })
        }
    }

    impl Protobuf<pb::abci::RequestDeliverTx> for DeliverTx {}
}