diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-24 17:54:51 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-17 08:46:45 +0800 |
commit | 1d5dd909b4ed8625330e9ec859e02dfd067f4006 (patch) | |
tree | f1302366463bb89248b632a6a947210e24af66cd /libsolidity/ast/AST.cpp | |
parent | 6ebc094474837d922ac00a92c54c903c5eb78585 (diff) | |
download | dexon-solidity-1d5dd909b4ed8625330e9ec859e02dfd067f4006.tar.gz dexon-solidity-1d5dd909b4ed8625330e9ec859e02dfd067f4006.tar.zst dexon-solidity-1d5dd909b4ed8625330e9ec859e02dfd067f4006.zip |
Do not try to display checksummed address for too-short/long address literals
Diffstat (limited to 'libsolidity/ast/AST.cpp')
-rw-r--r-- | libsolidity/ast/AST.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/ast/AST.cpp b/libsolidity/ast/AST.cpp index 4911f161..62507093 100644 --- a/libsolidity/ast/AST.cpp +++ b/libsolidity/ast/AST.cpp @@ -587,5 +587,7 @@ bool Literal::passesAddressChecksum() const std::string Literal::getChecksummedAddress() const { solAssert(isHexNumber(), "Expected hex number"); + if (value().length != 42) + return string(); return dev::getChecksummedAddress(value()); } |