aboutsummaryrefslogtreecommitdiffstats
path: root/core/crypto
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 /core/crypto
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 'core/crypto')
-rw-r--r--core/crypto/eth/eth.go2
-rw-r--r--core/crypto/utils.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/crypto/eth/eth.go b/core/crypto/eth/eth.go
index cbf2c7d..41d05eb 100644
--- a/core/crypto/eth/eth.go
+++ b/core/crypto/eth/eth.go
@@ -20,7 +20,7 @@ package eth
import (
"crypto/ecdsa"
- ethcrypto "github.com/ethereum/go-ethereum/crypto"
+ ethcrypto "github.com/dexon-foundation/dexon/crypto"
"github.com/dexon-foundation/dexon-consensus-core/common"
"github.com/dexon-foundation/dexon-consensus-core/core/crypto"
diff --git a/core/crypto/utils.go b/core/crypto/utils.go
index cb4decd..d56c28a 100644
--- a/core/crypto/utils.go
+++ b/core/crypto/utils.go
@@ -21,7 +21,7 @@ import (
"encoding/hex"
"fmt"
- "github.com/ethereum/go-ethereum/crypto"
+ "github.com/dexon-foundation/dexon/crypto"
"github.com/dexon-foundation/dexon-consensus-core/common"
)