diff options
author | Felix Lange <fjl@twurst.com> | 2017-05-24 21:40:02 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2017-05-24 21:40:26 +0800 |
commit | 069cb661c3587a0ff5f74c85775c2849a400cb9c (patch) | |
tree | bbdb5cfa2fea43249f04bc018d19cbad3a31b93c /build | |
parent | e1e87d8b1aebe88354e2f64ffd031709524522e4 (diff) | |
download | go-tangerine-069cb661c3587a0ff5f74c85775c2849a400cb9c.tar.gz go-tangerine-069cb661c3587a0ff5f74c85775c2849a400cb9c.tar.zst go-tangerine-069cb661c3587a0ff5f74c85775c2849a400cb9c.zip |
crypto/bn256: fix go vet false positive
Also add the package to the license tool ignore list.
Diffstat (limited to 'build')
-rw-r--r-- | build/update-license.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/build/update-license.go b/build/update-license.go index 81b1a507d..948eabab6 100644 --- a/build/update-license.go +++ b/build/update-license.go @@ -47,11 +47,14 @@ var ( // boring stuff "vendor/", "tests/files/", "build/", // don't relicense vendored sources - "crypto/sha3/", "crypto/ecies/", "log/", - "crypto/secp256k1/curve.go", + "cmd/internal/browser", "consensus/ethash/xor.go", + "crypto/bn256/", + "crypto/ecies/", + "crypto/secp256k1/curve.go", + "crypto/sha3/", "internal/jsre/deps", - "cmd/internal/browser", + "log/", // don't license generated files "contracts/chequebook/contract/", "contracts/ens/contract/", |