There was an error while loading. Please reload this page.
1 parent 7da46c7 commit bfedf8aCopy full SHA for bfedf8a
2 files changed
crates/test-utils/src/lib.rs
@@ -563,12 +563,12 @@ pub fn compile_solidity_contract(
563
let abi = if let serde_json::Value::Array(data) = &output["contracts"]["input.sol"][name]["abi"]
564
{
565
data.iter()
566
- .cloned()
567
.filter(|val| {
568
// ethabi doesn't yet support error types so we just filter them out for now
569
// https://github.com/rust-ethereum/ethabi/issues/225
570
val["type"] != "error"
571
})
+ .cloned()
572
.collect::<Vec<_>>()
573
} else {
574
vec![]
newsfragments/962.feature.md
@@ -0,0 +1,3 @@
1
+`fe build` and `fe check` now default to the project's root directory if no path is specified.
2
+
3
0 commit comments