diff options
author | Jhih-Ming Huang <jm@dexon.org> | 2019-04-10 22:29:35 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-10 22:29:35 +0800 |
commit | 675a9441784b14ee4bd996832c4431adc291c5af (patch) | |
tree | 58d76052f28fd5808605f592a52f297f862f9ef7 /core | |
parent | b102e88097d7555b776e95565355ab3dacced1f9 (diff) | |
download | go-tangerine-675a9441784b14ee4bd996832c4431adc291c5af.tar go-tangerine-675a9441784b14ee4bd996832c4431adc291c5af.tar.gz go-tangerine-675a9441784b14ee4bd996832c4431adc291c5af.tar.bz2 go-tangerine-675a9441784b14ee4bd996832c4431adc291c5af.tar.lz go-tangerine-675a9441784b14ee4bd996832c4431adc291c5af.tar.xz go-tangerine-675a9441784b14ee4bd996832c4431adc291c5af.tar.zst go-tangerine-675a9441784b14ee4bd996832c4431adc291c5af.zip |
fixup! Change import go github.com/dexon-foundation/dexon
Diffstat (limited to 'core')
-rw-r--r-- | core/blockchain.go | 2 | ||||
-rw-r--r-- | core/headerchain.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/blockchain.go b/core/blockchain.go index 3f0e7203e..feb61fee6 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -30,7 +30,7 @@ import ( dexCore "github.com/dexon-foundation/dexon-consensus/core" coreTypes "github.com/dexon-foundation/dexon-consensus/core/types" - "github.com/hashicorp/golang-lru" + lru "github.com/hashicorp/golang-lru" "github.com/dexon-foundation/dexon/common" "github.com/dexon-foundation/dexon/common/math" diff --git a/core/headerchain.go b/core/headerchain.go index b6aa66b60..aa6144fcf 100644 --- a/core/headerchain.go +++ b/core/headerchain.go @@ -30,6 +30,7 @@ import ( dexCore "github.com/dexon-foundation/dexon-consensus/core" coreCrypto "github.com/dexon-foundation/dexon-consensus/core/crypto" coreTypes "github.com/dexon-foundation/dexon-consensus/core/types" + lru "github.com/hashicorp/golang-lru" "github.com/dexon-foundation/dexon/common" "github.com/dexon-foundation/dexon/consensus" @@ -42,7 +43,6 @@ import ( "github.com/dexon-foundation/dexon/params" "github.com/dexon-foundation/dexon/rlp" "github.com/dexon-foundation/dexon/trie" - "github.com/hashicorp/golang-lru" ) const ( |