Skip to content

Commit

Permalink
reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
joonazan committed Oct 25, 2024
1 parent e032958 commit 0074bba
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ contract ValidationRuleBreaker is IAccount {
} else if (typeOfRuleBreak == 2) {
// May not call an EOA
address(1234567890).call("");
} else if (typeOfRuleBreak == 3) {} else if (typeOfRuleBreak == 100) {
} else if (typeOfRuleBreak == 3) {
// TODO make test that calls upgradeable proxy
} else if (typeOfRuleBreak == 100) {
// Gas may only be queried to pass everything into a far call
gasleft();
}
Expand Down

0 comments on commit 0074bba

Please sign in to comment.