aboutsummaryrefslogtreecommitdiffstats
path: root/ethdb
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-09-26 10:48:31 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:23:38 +0800
commit21cbe9d5b1630be351329a5715fd599030a00122 (patch)
treed595b8cceb54662497d44b102b6ddbbd60ec0a01 /ethdb
parent2ba220653fdf945844896458821808f2edd8f4af (diff)
downloadgo-tangerine-21cbe9d5b1630be351329a5715fd599030a00122.tar
go-tangerine-21cbe9d5b1630be351329a5715fd599030a00122.tar.gz
go-tangerine-21cbe9d5b1630be351329a5715fd599030a00122.tar.bz2
go-tangerine-21cbe9d5b1630be351329a5715fd599030a00122.tar.lz
go-tangerine-21cbe9d5b1630be351329a5715fd599030a00122.tar.xz
go-tangerine-21cbe9d5b1630be351329a5715fd599030a00122.tar.zst
go-tangerine-21cbe9d5b1630be351329a5715fd599030a00122.zip
Change import go github.com/dexon-foundation/dexon
Diffstat (limited to 'ethdb')
-rw-r--r--ethdb/database.go4
-rw-r--r--ethdb/database_js_test.go2
-rw-r--r--ethdb/database_test.go2
-rw-r--r--ethdb/memory_database.go2
4 files changed, 5 insertions, 5 deletions
diff --git a/ethdb/database.go b/ethdb/database.go
index 6c62d6a38..1fcaeda3d 100644
--- a/ethdb/database.go
+++ b/ethdb/database.go
@@ -25,8 +25,8 @@ import (
"sync"
"time"
- "github.com/ethereum/go-ethereum/log"
- "github.com/ethereum/go-ethereum/metrics"
+ "github.com/dexon-foundation/dexon/log"
+ "github.com/dexon-foundation/dexon/metrics"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/errors"
"github.com/syndtr/goleveldb/leveldb/filter"
diff --git a/ethdb/database_js_test.go b/ethdb/database_js_test.go
index b4c12ae0b..0883c054c 100644
--- a/ethdb/database_js_test.go
+++ b/ethdb/database_js_test.go
@@ -19,7 +19,7 @@
package ethdb_test
import (
- "github.com/ethereum/go-ethereum/ethdb"
+ "github.com/dexon-foundation/dexon/ethdb"
)
var _ ethdb.Database = &ethdb.LDBDatabase{}
diff --git a/ethdb/database_test.go b/ethdb/database_test.go
index 382fedbf9..df2c3b46a 100644
--- a/ethdb/database_test.go
+++ b/ethdb/database_test.go
@@ -27,7 +27,7 @@ import (
"sync"
"testing"
- "github.com/ethereum/go-ethereum/ethdb"
+ "github.com/dexon-foundation/dexon/ethdb"
)
func newTestLDB() (*ethdb.LDBDatabase, func()) {
diff --git a/ethdb/memory_database.go b/ethdb/memory_database.go
index 727f2f7ca..79d81ff9e 100644
--- a/ethdb/memory_database.go
+++ b/ethdb/memory_database.go
@@ -20,7 +20,7 @@ import (
"errors"
"sync"
- "github.com/ethereum/go-ethereum/common"
+ "github.com/dexon-foundation/dexon/common"
)
/*