diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-22 19:38:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-22 19:38:46 +0800 |
commit | a95f057e37b746359a7426e95da32e3236f0603a (patch) | |
tree | e7c7b00393570752b461cbf768fa0ea53e18fee5 /libdevcore/Exceptions.h | |
parent | de7a488f82217118d698f4cd6028826f12cbad8b (diff) | |
parent | d5f8ce90c7a76870e5a9d0fe6f9fd709a7383572 (diff) | |
download | dexon-solidity-a95f057e37b746359a7426e95da32e3236f0603a.tar dexon-solidity-a95f057e37b746359a7426e95da32e3236f0603a.tar.gz dexon-solidity-a95f057e37b746359a7426e95da32e3236f0603a.tar.bz2 dexon-solidity-a95f057e37b746359a7426e95da32e3236f0603a.tar.lz dexon-solidity-a95f057e37b746359a7426e95da32e3236f0603a.tar.xz dexon-solidity-a95f057e37b746359a7426e95da32e3236f0603a.tar.zst dexon-solidity-a95f057e37b746359a7426e95da32e3236f0603a.zip |
Merge pull request #2438 from ethereum/exceptions-cleanup
Cleanup assertions/exceptions includes
Diffstat (limited to 'libdevcore/Exceptions.h')
-rw-r--r-- | libdevcore/Exceptions.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libdevcore/Exceptions.h b/libdevcore/Exceptions.h index 37cdbed9..4817e9e3 100644 --- a/libdevcore/Exceptions.h +++ b/libdevcore/Exceptions.h @@ -56,9 +56,5 @@ DEV_SIMPLE_EXCEPTION(FileError); // error information to be added to exceptions using errinfo_invalidSymbol = boost::error_info<struct tag_invalidSymbol, char>; using errinfo_comment = boost::error_info<struct tag_comment, std::string>; -using errinfo_required = boost::error_info<struct tag_required, bigint>; -using errinfo_got = boost::error_info<struct tag_got, bigint>; -using errinfo_required_h256 = boost::error_info<struct tag_required_h256, h256>; -using errinfo_got_h256 = boost::error_info<struct tag_get_h256, h256>; } |