Skip to content

Commit

Permalink
fix: vyper version comparison typo (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Dec 5, 2024
1 parent 1812186 commit b052974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/artifacts/vyper/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl VyperSettings {
// Unsupported selections.
#[rustfmt::skip]
selection.retain(|selection| {
if *version <= VYPER_0_4 {
if *version < VYPER_0_4 {
if matches!(
selection.as_str(),
| "evm.bytecode.sourceMap" | "evm.deployedBytecode.sourceMap"
Expand Down

0 comments on commit b052974

Please sign in to comment.