Skip to content

Commit bfedf8a

Browse files
committed
Make clippy happy
1 parent 7da46c7 commit bfedf8a

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

crates/test-utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,12 +563,12 @@ pub fn compile_solidity_contract(
563563
let abi = if let serde_json::Value::Array(data) = &output["contracts"]["input.sol"][name]["abi"]
564564
{
565565
data.iter()
566-
.cloned()
567566
.filter(|val| {
568567
// ethabi doesn't yet support error types so we just filter them out for now
569568
// https://github.com/rust-ethereum/ethabi/issues/225
570569
val["type"] != "error"
571570
})
571+
.cloned()
572572
.collect::<Vec<_>>()
573573
} else {
574574
vec![]

newsfragments/962.feature.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)