juno_rust_proto/prost/cosmos-sdk/
cosmos.crypto.multisig.v1beta1.rs

1/// MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
2/// See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
3/// signed and with which modes.
4#[allow(clippy::derive_partial_eq_without_eq)]
5#[derive(Clone, PartialEq, ::prost::Message)]
6pub struct MultiSignature {
7    #[prost(bytes = "vec", repeated, tag = "1")]
8    pub signatures: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec<u8>>,
9}
10/// CompactBitArray is an implementation of a space efficient bit array.
11/// This is used to ensure that the encoded data takes up a minimal amount of
12/// space after proto encoding.
13/// This is not thread safe, and is not intended for concurrent usage.
14#[allow(clippy::derive_partial_eq_without_eq)]
15#[derive(Clone, PartialEq, ::prost::Message)]
16pub struct CompactBitArray {
17    #[prost(uint32, tag = "1")]
18    pub extra_bits_stored: u32,
19    #[prost(bytes = "vec", tag = "2")]
20    pub elems: ::prost::alloc::vec::Vec<u8>,
21}