aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/install_dkg_dep.sh4
-rw-r--r--core/crypto/dkg/constant.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/install_dkg_dep.sh b/bin/install_dkg_dep.sh
index b426711..9f6a393 100755
--- a/bin/install_dkg_dep.sh
+++ b/bin/install_dkg_dep.sh
@@ -7,8 +7,8 @@ fi
if [ ! -d .dep/dkg ]; then
mkdir -p .dep/dkg
cd .dep/dkg
- git clone --depth 1 --single-branch -b dev git://github.com/dexon-foundation/bls.git &
- git clone --depth 1 git://github.com/dexon-foundation/mcl.git &
+ git clone --depth 1 -b master git://github.com/dexon-foundation/bls.git &
+ git clone --depth 1 -b master git://github.com/dexon-foundation/mcl.git &
wait
cd bls
make test_go -j
diff --git a/core/crypto/dkg/constant.go b/core/crypto/dkg/constant.go
index 3e7ef45..37d873d 100644
--- a/core/crypto/dkg/constant.go
+++ b/core/crypto/dkg/constant.go
@@ -22,5 +22,5 @@ import (
)
const (
- curve = bls.CurveFp382_2
+ curve = bls.BLS12_381
)