Merge pull request #1746 from ethereum/dontwarnAllUpper

Mention way to remove warning about invalid checksum.
This commit is contained in:
chriseth 2017-03-06 14:20:42 +01:00 committed by GitHub
commit 573b885337

View File

@ -1580,7 +1580,11 @@ void TypeChecker::endVisit(Literal const& _literal)
return;
}
else
warning(_literal.location(), "This looks like an address but has an invalid checksum.");
warning(
_literal.location(),
"This looks like an address but has an invalid checksum. "
"If this is not used as an address, please prepend '00'."
);
}
_literal.annotation().type = Type::forLiteral(_literal);
if (!_literal.annotation().type)