nibiru_std/proto/buf/
cosmos.crypto.multisig.v1beta1.rs

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