Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(proto): regenerate rust files #367

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions grpc/src/gapfiller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,9 @@ pub enum SpecificationAssetClass {
FungibleToken = 1,
FungibleAsset = 2,
Nft = 3,
PrintableNft = 4,
ProgrammableNft = 5,
MplCoreAsset = 10,
MplCoreCollection = 11,
ProgrammableNft = 4,
MplCoreAsset = 5,
MplCoreCollection = 6,
}
impl SpecificationAssetClass {
/// String value of the enum field names used in the ProtoBuf definition.
Expand All @@ -448,7 +447,6 @@ impl SpecificationAssetClass {
SpecificationAssetClass::FungibleToken => "SPECIFICATION_ASSET_CLASS_FUNGIBLE_TOKEN",
SpecificationAssetClass::FungibleAsset => "SPECIFICATION_ASSET_CLASS_FUNGIBLE_ASSET",
SpecificationAssetClass::Nft => "SPECIFICATION_ASSET_CLASS_NFT",
SpecificationAssetClass::PrintableNft => "SPECIFICATION_ASSET_CLASS_PRINTABLE_NFT",
SpecificationAssetClass::ProgrammableNft => {
"SPECIFICATION_ASSET_CLASS_PROGRAMMABLE_NFT"
},
Expand All @@ -465,7 +463,6 @@ impl SpecificationAssetClass {
"SPECIFICATION_ASSET_CLASS_FUNGIBLE_TOKEN" => Some(Self::FungibleToken),
"SPECIFICATION_ASSET_CLASS_FUNGIBLE_ASSET" => Some(Self::FungibleAsset),
"SPECIFICATION_ASSET_CLASS_NFT" => Some(Self::Nft),
"SPECIFICATION_ASSET_CLASS_PRINTABLE_NFT" => Some(Self::PrintableNft),
"SPECIFICATION_ASSET_CLASS_PROGRAMMABLE_NFT" => Some(Self::ProgrammableNft),
"SPECIFICATION_ASSET_CLASS_MPL_CORE_ASSET" => Some(Self::MplCoreAsset),
"SPECIFICATION_ASSET_CLASS_MPL_CORE_COLLECTION" => Some(Self::MplCoreCollection),
Expand Down
Loading