diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-04-18 19:00:14 +0800 |
---|---|---|
committer | Jimmy Hu <jimmy.hu@dexon.org> | 2019-04-18 19:00:14 +0800 |
commit | 7ba4eb6eb78ec3ca431b216603987aaa8ce7df48 (patch) | |
tree | f55121ea2cc68469a7f8dcc6123ec6051c9733f5 /bin | |
parent | ccba7be9105c01eba0617e5ec0a791436200a132 (diff) | |
download | dexon-consensus-7ba4eb6eb78ec3ca431b216603987aaa8ce7df48.tar dexon-consensus-7ba4eb6eb78ec3ca431b216603987aaa8ce7df48.tar.gz dexon-consensus-7ba4eb6eb78ec3ca431b216603987aaa8ce7df48.tar.bz2 dexon-consensus-7ba4eb6eb78ec3ca431b216603987aaa8ce7df48.tar.lz dexon-consensus-7ba4eb6eb78ec3ca431b216603987aaa8ce7df48.tar.xz dexon-consensus-7ba4eb6eb78ec3ca431b216603987aaa8ce7df48.tar.zst dexon-consensus-7ba4eb6eb78ec3ca431b216603987aaa8ce7df48.zip |
misc: fix dep
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/install_eth_dep.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/install_eth_dep.sh b/bin/install_eth_dep.sh index 2e1b5ff..79ecd0e 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/dexon-foundation/dexon/crypto/secp256k1/libsecp256k1 +rm -rf vendor/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1 if [ ! -d .dep/libsecp256k1 ]; then git init .dep/libsecp256k1 cd .dep/libsecp256k1 - git remote add origin https://github.com/dexon-foundation/dexon.git + git remote add origin https://github.com/ethereum/go-ethereum.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/dexon-foundation/dexon/crypto/secp256k1 + vendor/github.com/ethereum/go-ethereum/crypto/secp256k1 |