diff options
author | chriseth <c@ethdev.com> | 2017-01-25 06:36:07 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2017-01-25 06:37:48 +0800 |
commit | 3949624a61b1dd0c32e67d30fe7d46b2511c583f (patch) | |
tree | 796125372166adcc3207927650666186f32edbd8 /libdevcore/CommonData.h | |
parent | 605455f96b64f0c4b229cc31186f2dcf22433e6d (diff) | |
download | dexon-solidity-3949624a61b1dd0c32e67d30fe7d46b2511c583f.tar.gz dexon-solidity-3949624a61b1dd0c32e67d30fe7d46b2511c583f.tar.zst dexon-solidity-3949624a61b1dd0c32e67d30fe7d46b2511c583f.zip |
Also check library addresses.
Diffstat (limited to 'libdevcore/CommonData.h')
-rw-r--r-- | libdevcore/CommonData.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libdevcore/CommonData.h b/libdevcore/CommonData.h index 5ffcdcca..e0a6d221 100644 --- a/libdevcore/CommonData.h +++ b/libdevcore/CommonData.h @@ -179,4 +179,9 @@ bool contains(T const& _t, V const& _v) return std::end(_t) != std::find(std::begin(_t), std::end(_t), _v); } +/// @returns true iff @a _str passess the hex address checksum test. +/// @param _strict if false, hex strings with only uppercase or only lowercase letters +/// are considered valid. +bool passesAddressChecksum(std::string const& _str, bool _strict); + } |