aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--cmake/templates/license.h.in2
-rwxr-xr-xscripts/bytecodecompare/storebytecode.sh4
3 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index 7a448e8c..c7065c09 100644
--- a/README.md
+++ b/README.md
@@ -62,5 +62,6 @@ if you want to help.
[@chriseth](https://github.com/chriseth)
## License
-Solidity is licensed under [GNU General Public License v3.0](https://github.com/ethereum/solidity/blob/develop/LICENSE.txt)
+Solidity is licensed under [GNU General Public License v3.0](LICENSE.txt)
+Some third-party code has its [own licensing terms](cmake/templates/license.h.in).
diff --git a/cmake/templates/license.h.in b/cmake/templates/license.h.in
index 4f22d8f4..31e2e17d 100644
--- a/cmake/templates/license.h.in
+++ b/cmake/templates/license.h.in
@@ -67,7 +67,7 @@ jsoncpp:
license you like.
scanner/token:
- The libsolidity/parsing/{scanner,token}.{h,cpp} files are dervied from
+ The liblangutil/{CharStream,Scanner,Token}.{h,cpp} files are dervied from
code originating from the V8 project licensed under the following terms:
Copyright 2006-2012, the V8 project authors. All rights reserved.
diff --git a/scripts/bytecodecompare/storebytecode.sh b/scripts/bytecodecompare/storebytecode.sh
index b14b23d0..4208d67f 100755
--- a/scripts/bytecodecompare/storebytecode.sh
+++ b/scripts/bytecodecompare/storebytecode.sh
@@ -82,8 +82,8 @@ for (var optimize of [false, true])
{
for (var contractName in result['contracts'][filename])
{
- console.log(contractName + ' ' + result['contracts'][filename][contractName].evm.bytecode.object)
- console.log(contractName + ' ' + result['contracts'][filename][contractName].metadata)
+ console.log(filename + ':' + contractName + ' ' + result['contracts'][filename][contractName].evm.bytecode.object)
+ console.log(filename + ':' + contractName + ' ' + result['contracts'][filename][contractName].metadata)
}
}
}