diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-10-23 15:29:58 +0800 |
---|---|---|
committer | Wei-Ning Huang <aitjcize@gmail.com> | 2018-10-23 15:29:58 +0800 |
commit | 726e855384bf686b192f9d4b1c4cb0e9d006d414 (patch) | |
tree | d91bf3a4749af0801c09411b3ace8d79bea0d6ac /core/crypto | |
parent | e79e91c31eaa08e69def8b204901004b3b85e828 (diff) | |
download | dexon-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/crypto')
-rw-r--r-- | core/crypto/dkg/constant.go | 2 | ||||
-rw-r--r-- | core/crypto/dkg/dkg.go | 2 | ||||
-rw-r--r-- | core/crypto/dkg/dkg_test.go | 2 | ||||
-rw-r--r-- | core/crypto/dkg/utils.go | 2 |
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" ) |