Skip to content

Commit 55bb2b2

Browse files
authored
fix: remove superfluous assertion (#304)
foundry-rs/foundry#11421 (review)
1 parent 87ad8eb commit 55bb2b2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

crates/compilers/src/compilers/solc/compiler.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ impl Solc {
130130
if !cfg!(debug_assertions) {
131131
return;
132132
}
133-
assert_eq!(self.version_short(), self.version);
134133
if let Ok(v) = Self::version_with_args(&self.solc, &self.extra_args) {
135134
assert_eq!(v.major, self.version.major);
136135
assert_eq!(v.minor, self.version.minor);

0 commit comments

Comments
 (0)