Update tests for strict address literals

This commit is contained in:
Jason Cobb
2018-06-25 16:17:50 +02:00
committed by Alex Beregszaszi
parent 48b003d4d4
commit 98c9ca2575
14 changed files with 24 additions and 25 deletions
@@ -1,3 +1,3 @@
contract c {
modifier mod { if (msg.sender == 0) _; }
modifier mod { if (msg.sender == 0x0000000000000000000000000000000000000000) _; }
}