Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Oct 17, 2024
1 parent 8815a33 commit 98abe47
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions noir/noir-repo/compiler/noirc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,13 +452,10 @@ fn compile_contract_inner(
.iter()
.filter_map(|attr|
match attr {
SecondaryAttribute::Tag(attribute) => {
SecondaryAttribute::Tag(attribute) | SecondaryAttribute::Meta(attribute) => {
Some(attribute.contents.clone())
},
SecondaryAttribute::ContractLibraryMethod => {
Some("contract_library_method".to_string())
},
_ => None
_ => None
})
.collect();

Expand Down

0 comments on commit 98abe47

Please sign in to comment.