mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Mention way to remove warning.
This commit is contained in:
parent
5069c58a4b
commit
f521fd7b19
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user