aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-09 04:32:57 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-08-11 23:38:43 +0800
commit4d82d4f57acf11745bb2e1610c5777128f68bee4 (patch)
tree629573a49cc463ed2820f4c9ddee09a8cba5aa57 /libsolidity/interface
parent53a497b4d85c0748243c899f0a860518eb54bddc (diff)
downloaddexon-solidity-4d82d4f57acf11745bb2e1610c5777128f68bee4.tar.gz
dexon-solidity-4d82d4f57acf11745bb2e1610c5777128f68bee4.tar.zst
dexon-solidity-4d82d4f57acf11745bb2e1610c5777128f68bee4.zip
Store experimental flag in metadata CBOR
Diffstat (limited to 'libsolidity/interface')
-rw-r--r--libsolidity/interface/CompilerStack.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp
index 7c66a843..bc52ff7a 100644
--- a/libsolidity/interface/CompilerStack.cpp
+++ b/libsolidity/interface/CompilerStack.cpp
@@ -653,6 +653,12 @@ void CompilerStack::compileContract(
// CBOR-encoding of {"bzzr0": dev::swarmHash(metadata)}
bytes{0xa1, 0x65, 'b', 'z', 'z', 'r', '0', 0x58, 0x20} +
dev::swarmHash(metadata).asBytes();
+ if (!_contract.sourceUnit().annotation().experimentalFeatures.empty())
+ cborEncodedMetadata =
+ // CBOR-encoding of {"bzzr0": dev::swarmHash(metadata), "experimental": true}
+ bytes{0xa2, 0x65, 'b', 'z', 'z', 'r', '0', 0x58, 0x20} +
+ dev::swarmHash(metadata).asBytes() +
+ bytes{0x6c, 'e', 'x', 'p', 'e', 'r', 'i', 'm', 'e', 'n', 't', 'a', 'l', 0xf5};
solAssert(cborEncodedMetadata.size() <= 0xffff, "Metadata too large");
// 16-bit big endian length
cborEncodedMetadata += toCompactBigEndian(cborEncodedMetadata.size(), 2);