aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-10-23 15:29:58 +0800
committerWei-Ning Huang <aitjcize@gmail.com>2018-10-23 15:29:58 +0800
commit726e855384bf686b192f9d4b1c4cb0e9d006d414 (patch)
treed91bf3a4749af0801c09411b3ace8d79bea0d6ac /core
parente79e91c31eaa08e69def8b204901004b3b85e828 (diff)
downloaddexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar
dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.gz
dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.bz2
dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.lz
dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.xz
dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.zst
dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.zip
Change BLS to dexon-foundation (#245)
Diffstat (limited to 'core')
-rw-r--r--core/crypto/dkg/constant.go2
-rw-r--r--core/crypto/dkg/dkg.go2
-rw-r--r--core/crypto/dkg/dkg_test.go2
-rw-r--r--core/crypto/dkg/utils.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/core/crypto/dkg/constant.go b/core/crypto/dkg/constant.go
index 119613b..9145391 100644
--- a/core/crypto/dkg/constant.go
+++ b/core/crypto/dkg/constant.go
@@ -18,7 +18,7 @@
package dkg
import (
- "github.com/Spiderpowa/bls/ffi/go/bls"
+ "github.com/dexon-foundation/bls/ffi/go/bls"
)
const (
diff --git a/core/crypto/dkg/dkg.go b/core/crypto/dkg/dkg.go
index 184a94f..fca3fcd 100644
--- a/core/crypto/dkg/dkg.go
+++ b/core/crypto/dkg/dkg.go
@@ -22,7 +22,7 @@ import (
"fmt"
"io"
- "github.com/Spiderpowa/bls/ffi/go/bls"
+ "github.com/dexon-foundation/bls/ffi/go/bls"
"github.com/dexon-foundation/dexon/rlp"
"github.com/dexon-foundation/dexon-consensus-core/common"
diff --git a/core/crypto/dkg/dkg_test.go b/core/crypto/dkg/dkg_test.go
index cb167e4..5dfa6d1 100644
--- a/core/crypto/dkg/dkg_test.go
+++ b/core/crypto/dkg/dkg_test.go
@@ -25,7 +25,7 @@ import (
"sync"
"testing"
- "github.com/Spiderpowa/bls/ffi/go/bls"
+ "github.com/dexon-foundation/bls/ffi/go/bls"
"github.com/dexon-foundation/dexon/rlp"
"github.com/stretchr/testify/suite"
diff --git a/core/crypto/dkg/utils.go b/core/crypto/dkg/utils.go
index 45c4a27..f8d11b3 100644
--- a/core/crypto/dkg/utils.go
+++ b/core/crypto/dkg/utils.go
@@ -20,7 +20,7 @@ package dkg
import (
"fmt"
- "github.com/Spiderpowa/bls/ffi/go/bls"
+ "github.com/dexon-foundation/bls/ffi/go/bls"
"github.com/dexon-foundation/dexon-consensus-core/core/crypto"
)