aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis
diff options
context:
space:
mode:
authorwadeAlexC <wade.alex.c@gmail.com>2017-10-05 21:28:25 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-11-17 08:46:44 +0800
commit8a6692b2cfb7cf53db6731acd6a9908bd36b5475 (patch)
tree205a7099eacf17a44932c3285371a7007bf980ea /libsolidity/analysis
parent2927ce0bd43e7d6aa3ba8e13bd123225adf1c7e8 (diff)
downloaddexon-solidity-8a6692b2cfb7cf53db6731acd6a9908bd36b5475.tar.gz
dexon-solidity-8a6692b2cfb7cf53db6731acd6a9908bd36b5475.tar.zst
dexon-solidity-8a6692b2cfb7cf53db6731acd6a9908bd36b5475.zip
Improves address literal checksum error message
Diffstat (limited to 'libsolidity/analysis')
-rw-r--r--libsolidity/analysis/TypeChecker.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/libsolidity/analysis/TypeChecker.cpp b/libsolidity/analysis/TypeChecker.cpp
index 746e762e..fee60797 100644
--- a/libsolidity/analysis/TypeChecker.cpp
+++ b/libsolidity/analysis/TypeChecker.cpp
@@ -1122,7 +1122,7 @@ bool TypeChecker::visit(VariableDeclarationStatement const& _statement)
var.annotation().type->toString() +
". Try converting to type " +
valueComponentType->mobileType()->toString() +
- " or use an explicit conversion."
+ " or use an explicit conversion."
);
else
m_errorReporter.typeError(
@@ -1320,7 +1320,7 @@ bool TypeChecker::visit(TupleExpression const& _tuple)
_tuple.annotation().isPure = isPure;
if (_tuple.isInlineArray())
{
- if (!inlineArrayType)
+ if (!inlineArrayType)
m_errorReporter.fatalTypeError(_tuple.location(), "Unable to deduce common type for array elements.");
_tuple.annotation().type = make_shared<ArrayType>(DataLocation::Memory, inlineArrayType, types.size());
}
@@ -2000,7 +2000,9 @@ void TypeChecker::endVisit(Literal const& _literal)
m_errorReporter.warning(
_literal.location(),
"This looks like an address but has an invalid checksum. "
- "If this is not used as an address, please prepend '00'."
+ "If this is not used as an address, please prepend '00'. "
+ "Correct checksummed address: '" + _literal.getChecksummedAddress() + "'. "
+ "For more information please see https://solidity.readthedocs.io/en/develop/types.html#address-literals"
);
}
if (!_literal.annotation().type)