disable problematic rules

This commit is contained in:
Hadrien Croubois
2023-03-18 09:38:01 +01:00
parent ecec8a7353
commit 7c62ed2e8a

View File

@ -75,14 +75,13 @@ module.exports = [].concat(
`--link ${contract}:_timelock=TimelockControllerHarness`,
'--optimistic_hashing',
'--optimistic_loop',
'--loop_iter 3',
],
})),
product(
['GovernorHarness'],
['GovernorFunctions'],
['ERC20VotesBlocknumberHarness'], // 'ERC20VotesTimestampHarness'
['propose', 'castVote', 'queue', 'execute', 'cancel'],
['castVote', 'execute'], // 'propose', 'queue', 'cancel' // timeout
).map(([contract, spec, token, fn]) => ({
spec,
contract,
@ -96,7 +95,6 @@ module.exports = [].concat(
`--link ${contract}:_timelock=TimelockControllerHarness`,
'--optimistic_hashing',
'--optimistic_loop',
'--loop_iter 3',
'--rules',
...['liveness', 'effect', 'sideeffect'].map(kind => `${fn}_${kind}`),
],