Update external contracts in compilationTests (to support strict address literals)

This commit is contained in:
Alex Beregszaszi
2018-06-25 16:17:50 +02:00
parent 98c9ca2575
commit 3ee3018bf6
22 changed files with 54 additions and 54 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ contract module {
@ret This is the module handler address or not
*/
if ( moduleHandlerAddress == 0x00 ) { return true; }
if ( moduleHandlerAddress == address(0x00) ) { return true; }
if ( moduleStatus != status.Connected ) { return false; }
return addr == moduleHandlerAddress;
}