Skip to content

Commit b052974

Browse files
authored
fix: vyper version comparison typo (#232)
1 parent 1812186 commit b052974

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/artifacts/vyper/src/settings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ impl VyperSettings {
8282
// Unsupported selections.
8383
#[rustfmt::skip]
8484
selection.retain(|selection| {
85-
if *version <= VYPER_0_4 {
85+
if *version < VYPER_0_4 {
8686
if matches!(
8787
selection.as_str(),
8888
| "evm.bytecode.sourceMap" | "evm.deployedBytecode.sourceMap"

0 commit comments

Comments
 (0)