Only run web3j for required contracts

This commit is contained in:
Teemu Patja 2017-11-10 12:22:58 +02:00
parent fe5ce481c9
commit 1f25548111
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C

View File

@ -3,8 +3,10 @@
SOLC=$(which solc) SOLC=$(which solc)
WEB3J=$(which web3j) WEB3J=$(which web3j)
rm -f resources/contracts/*.{abi,bin}
# compile contracts # compile contracts
for f in contracts/*.sol; do for f in contracts/{TokenReg,MultiSigTokenWallet*}.sol; do
$SOLC $f --overwrite --bin --abi --optimize -o resources/contracts $SOLC $f --overwrite --bin --abi --optimize -o resources/contracts
done done