aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-09-26 18:03:41 +0800
committerGitHub <noreply@github.com>2018-09-26 18:03:41 +0800
commit0398468051068720688199442f53984b4071f4b2 (patch)
tree198ed487f20ca1ede8ea8ce804aba2ec81593f13 /bin
parentfb1a443ea8c527eebcb59bd8f8f52791ace6284b (diff)
downloadtangerine-consensus-0398468051068720688199442f53984b4071f4b2.tar
tangerine-consensus-0398468051068720688199442f53984b4071f4b2.tar.gz
tangerine-consensus-0398468051068720688199442f53984b4071f4b2.tar.bz2
tangerine-consensus-0398468051068720688199442f53984b4071f4b2.tar.lz
tangerine-consensus-0398468051068720688199442f53984b4071f4b2.tar.xz
tangerine-consensus-0398468051068720688199442f53984b4071f4b2.tar.zst
tangerine-consensus-0398468051068720688199442f53984b4071f4b2.zip
core: use dexon-foundation/dexon instead of ethereum/go-ethereum (#143)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/install_eth_dep.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/install_eth_dep.sh b/bin/install_eth_dep.sh
index 79ecd0e..2e1b5ff 100755
--- a/bin/install_eth_dep.sh
+++ b/bin/install_eth_dep.sh
@@ -4,11 +4,11 @@ if [ -e .dep/libsecp256k1 ]; then
exit 0
fi
-rm -rf vendor/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1
+rm -rf vendor/github.com/dexon-foundation/dexon/crypto/secp256k1/libsecp256k1
if [ ! -d .dep/libsecp256k1 ]; then
git init .dep/libsecp256k1
cd .dep/libsecp256k1
- git remote add origin https://github.com/ethereum/go-ethereum.git
+ git remote add origin https://github.com/dexon-foundation/dexon.git
git config core.sparsecheckout true
echo "crypto/secp256k1/libsecp256k1/*" >> .git/info/sparse-checkout
cd ../../
@@ -17,4 +17,4 @@ cd .dep/libsecp256k1
git pull --depth=1 origin master
cd ../../
cp -r .dep/libsecp256k1/crypto/secp256k1/libsecp256k1 \
- vendor/github.com/ethereum/go-ethereum/crypto/secp256k1
+ vendor/github.com/dexon-foundation/dexon/crypto/secp256k1