diff options
Diffstat (limited to 'ethdb')
-rw-r--r-- | ethdb/database.go | 4 | ||||
-rw-r--r-- | ethdb/database_js_test.go | 2 | ||||
-rw-r--r-- | ethdb/database_test.go | 2 | ||||
-rw-r--r-- | ethdb/memory_database.go | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/ethdb/database.go b/ethdb/database.go index 1fcaeda3d..a3e4d7c35 100644 --- a/ethdb/database.go +++ b/ethdb/database.go @@ -25,14 +25,14 @@ import ( "sync" "time" - "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" "github.com/syndtr/goleveldb/leveldb/iterator" "github.com/syndtr/goleveldb/leveldb/opt" "github.com/syndtr/goleveldb/leveldb/util" + "github.com/tangerine-network/go-tangerine/log" + "github.com/tangerine-network/go-tangerine/metrics" ) const ( diff --git a/ethdb/database_js_test.go b/ethdb/database_js_test.go index 0883c054c..8d6208d50 100644 --- a/ethdb/database_js_test.go +++ b/ethdb/database_js_test.go @@ -19,7 +19,7 @@ package ethdb_test import ( - "github.com/dexon-foundation/dexon/ethdb" + "github.com/tangerine-network/go-tangerine/ethdb" ) var _ ethdb.Database = ðdb.LDBDatabase{} diff --git a/ethdb/database_test.go b/ethdb/database_test.go index df2c3b46a..2c8b1a7de 100644 --- a/ethdb/database_test.go +++ b/ethdb/database_test.go @@ -27,7 +27,7 @@ import ( "sync" "testing" - "github.com/dexon-foundation/dexon/ethdb" + "github.com/tangerine-network/go-tangerine/ethdb" ) func newTestLDB() (*ethdb.LDBDatabase, func()) { diff --git a/ethdb/memory_database.go b/ethdb/memory_database.go index 79d81ff9e..2ba86e3a9 100644 --- a/ethdb/memory_database.go +++ b/ethdb/memory_database.go @@ -20,7 +20,7 @@ import ( "errors" "sync" - "github.com/dexon-foundation/dexon/common" + "github.com/tangerine-network/go-tangerine/common" ) /* |