File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ function test_fn { yarn test; }
37
37
function ens_test
38
38
{
39
39
local repo=" https://github.com/ensdomains/ens-contracts.git"
40
- local ref_type=tag
41
- local ref=" v0.0.8 " # The project is in flux right now and master might be too unstable for us
40
+ local ref_type=branch
41
+ local ref=" master"
42
42
local config_file=" hardhat.config.js"
43
43
44
44
local compile_only_presets=(
@@ -72,6 +72,10 @@ function ens_test
72
72
replace_version_pragmas
73
73
neutralize_packaged_contracts
74
74
75
+ # In some cases Hardhat does not detect revert reasons properly via IR.
76
+ # TODO: Remove this when https://github.com/NomicFoundation/hardhat/issues/2115 gets fixed.
77
+ sed -i " s|it\(('Does not allow wrapping a name you do not own',\)|it.skip\1|g" test/wrapper/NameWrapper.js
78
+
75
79
find . -name " *.sol" -exec sed -i -e ' s/^\(\s*\)\(assembly\)/\1\/\/\/ @solidity memory-safe-assembly\n\1\2/' ' {}' \;
76
80
77
81
for preset in $SELECTED_PRESETS ; do
You can’t perform that action at this time.
0 commit comments