fix(primitives): Adjust member visibility in structs (#144)
This commit is contained in:
parent
1bd2c49155
commit
6c4329bb2a
1 changed files with 2 additions and 2 deletions
|
|
@ -1259,10 +1259,10 @@ pub type Metadata = KeyValuePairs<MetadatumLabel, Metadatum>;
|
||||||
#[derive(Encode, Decode, Debug, PartialEq, Clone)]
|
#[derive(Encode, Decode, Debug, PartialEq, Clone)]
|
||||||
pub struct ShelleyMaAuxiliaryDAta {
|
pub struct ShelleyMaAuxiliaryDAta {
|
||||||
#[n(0)]
|
#[n(0)]
|
||||||
transaction_metadata: Metadata,
|
pub transaction_metadata: Metadata,
|
||||||
|
|
||||||
#[n(1)]
|
#[n(1)]
|
||||||
auxiliary_scripts: Option<MaybeIndefArray<NativeScript>>,
|
pub auxiliary_scripts: Option<MaybeIndefArray<NativeScript>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone)]
|
#[derive(Debug, PartialEq, Clone)]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue