Skip to content

Commit

Permalink
Clean up after merging master into next-v5.0 (#3956)
Browse files Browse the repository at this point in the history
Co-authored-by: Francisco <fg@frang.io>
  • Loading branch information
Amxx and frangio authored Jan 15, 2023
1 parent 147dc89 commit 30c3c6c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion slither.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"detectors_to_run": "reentrancy-eth,reentrancy-no-eth,reentrancy-unlimited-gas",
"filter_paths": "contracts/mocks",
"compile_force_framework": "hardhat"
}
}
2 changes: 1 addition & 1 deletion test/helpers/map-values.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function mapValues(obj, fn) {
return Object.fromEntries([...Object.entries(obj)].map(([k, v]) => [k, fn(v)]));
return Object.fromEntries(Object.entries(obj).map(([k, v]) => [k, fn(v)]));
}

module.exports = {
Expand Down

0 comments on commit 30c3c6c

Please sign in to comment.