diff options
author | chriseth <chris@ethereum.org> | 2018-12-06 03:34:27 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-12-06 05:37:05 +0800 |
commit | 3a378eae1a57683d0f31ab54c122b2a5c6a7c8bb (patch) | |
tree | 0d69fe0cf64211a9faad76b9dd87573826f1de2c /libsolidity/ast/ASTJsonConverter.cpp | |
parent | 15e28fa444843d6b8e5bef81ae9fc73a41ae97f6 (diff) | |
download | dexon-solidity-3a378eae1a57683d0f31ab54c122b2a5c6a7c8bb.tar.gz dexon-solidity-3a378eae1a57683d0f31ab54c122b2a5c6a7c8bb.tar.zst dexon-solidity-3a378eae1a57683d0f31ab54c122b2a5c6a7c8bb.zip |
Restrict toHex to `bytes`.
Diffstat (limited to 'libsolidity/ast/ASTJsonConverter.cpp')
-rw-r--r-- | libsolidity/ast/ASTJsonConverter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/ast/ASTJsonConverter.cpp b/libsolidity/ast/ASTJsonConverter.cpp index cfb13271..e92134a8 100644 --- a/libsolidity/ast/ASTJsonConverter.cpp +++ b/libsolidity/ast/ASTJsonConverter.cpp @@ -724,7 +724,7 @@ bool ASTJsonConverter::visit(Literal const& _node) std::vector<pair<string, Json::Value>> attributes = { make_pair(m_legacy ? "token" : "kind", literalTokenKind(_node.token())), make_pair("value", value), - make_pair(m_legacy ? "hexvalue" : "hexValue", toHex(_node.value())), + make_pair(m_legacy ? "hexvalue" : "hexValue", toHex(asBytes(_node.value()))), make_pair( "subdenomination", subdenomination == Token::Illegal ? |