aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-08-15 01:21:48 -0400
committerDeterminant <ted.sybil@gmail.com>2019-08-15 01:21:48 -0400
commit21e12867a451b0357f6b23f51dda45e80e9b8e19 (patch)
treeee35aac4f56a78d4b5ca5090dfc971230cab30df
parent0cfa95ffa018041e53b056365a66fee32235779f (diff)
rewrite import path
-rw-r--r--cmd/geth/chaincmd.go2
-rw-r--r--cmd/geth/config.go6
-rw-r--r--cmd/geth/consolecmd.go4
-rw-r--r--cmd/geth/main.go8
-rw-r--r--cmd/geth/misccmd.go2
-rw-r--r--cmd/geth/retesteth.go2
-rw-r--r--cmd/geth/usage.go4
-rw-r--r--cmd/utils/cmd.go4
-rw-r--r--cmd/utils/flags.go10
-rw-r--r--coreth.go6
-rw-r--r--eth/api.go2
-rw-r--r--eth/api_tracer.go2
-rw-r--r--eth/backend.go10
-rw-r--r--eth/config.go2
-rw-r--r--eth/gen_config.go2
-rw-r--r--ethstats/ethstats.go2
-rw-r--r--examples/fc/main.go2
-rw-r--r--examples/payments/main.go4
-rw-r--r--node/node.go2
19 files changed, 38 insertions, 38 deletions
diff --git a/cmd/geth/chaincmd.go b/cmd/geth/chaincmd.go
index 4b175b6..3890099 100644
--- a/cmd/geth/chaincmd.go
+++ b/cmd/geth/chaincmd.go
@@ -26,7 +26,7 @@ import (
"sync/atomic"
"time"
- "github.com/Determinant/coreth/cmd/utils"
+ "github.com/ava-labs/coreth/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/console"
"github.com/ethereum/go-ethereum/core"
diff --git a/cmd/geth/config.go b/cmd/geth/config.go
index d7484ab..51ca835 100644
--- a/cmd/geth/config.go
+++ b/cmd/geth/config.go
@@ -26,10 +26,10 @@ import (
cli "gopkg.in/urfave/cli.v1"
- "github.com/Determinant/coreth/cmd/utils"
+ "github.com/ava-labs/coreth/cmd/utils"
"github.com/ethereum/go-ethereum/dashboard"
- "github.com/Determinant/coreth/eth"
- "github.com/Determinant/coreth/node"
+ "github.com/ava-labs/coreth/eth"
+ "github.com/ava-labs/coreth/node"
"github.com/ethereum/go-ethereum/params"
whisper "github.com/ethereum/go-ethereum/whisper/whisperv6"
"github.com/naoina/toml"
diff --git a/cmd/geth/consolecmd.go b/cmd/geth/consolecmd.go
index 3cf9192..ab44175 100644
--- a/cmd/geth/consolecmd.go
+++ b/cmd/geth/consolecmd.go
@@ -24,9 +24,9 @@ import (
"strings"
"syscall"
- "github.com/Determinant/coreth/cmd/utils"
+ "github.com/ava-labs/coreth/cmd/utils"
"github.com/ethereum/go-ethereum/console"
- "github.com/Determinant/coreth/node"
+ "github.com/ava-labs/coreth/node"
"github.com/ethereum/go-ethereum/rpc"
"gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 56b838d..e3d7e9d 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -28,17 +28,17 @@ import (
"time"
"github.com/elastic/gosigar"
- "github.com/Determinant/coreth/cmd/utils"
+ "github.com/ava-labs/coreth/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/console"
- "github.com/Determinant/coreth/eth"
+ "github.com/ava-labs/coreth/eth"
"github.com/ethereum/go-ethereum/eth/downloader"
"github.com/ethereum/go-ethereum/ethclient"
- "github.com/Determinant/coreth/internal/debug"
+ "github.com/ava-labs/coreth/internal/debug"
"github.com/ethereum/go-ethereum/les"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/metrics"
- "github.com/Determinant/coreth/node"
+ "github.com/ava-labs/coreth/node"
cli "gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/geth/misccmd.go b/cmd/geth/misccmd.go
index f778515..a960147 100644
--- a/cmd/geth/misccmd.go
+++ b/cmd/geth/misccmd.go
@@ -23,7 +23,7 @@ import (
"strconv"
"strings"
- "github.com/Determinant/coreth/cmd/utils"
+ "github.com/ava-labs/coreth/cmd/utils"
"github.com/ethereum/go-ethereum/consensus/ethash"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/params"
diff --git a/cmd/geth/retesteth.go b/cmd/geth/retesteth.go
index e3f163b..695e7df 100644
--- a/cmd/geth/retesteth.go
+++ b/cmd/geth/retesteth.go
@@ -26,7 +26,7 @@ import (
"strings"
"time"
- "github.com/Determinant/coreth/cmd/utils"
+ "github.com/ava-labs/coreth/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/common/math"
diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go
index 038d967..2eb822d 100644
--- a/cmd/geth/usage.go
+++ b/cmd/geth/usage.go
@@ -24,8 +24,8 @@ import (
"strings"
- "github.com/Determinant/coreth/cmd/utils"
- "github.com/Determinant/coreth/internal/debug"
+ "github.com/ava-labs/coreth/cmd/utils"
+ "github.com/ava-labs/coreth/internal/debug"
cli "gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go
index 91b1bb5..8207d1f 100644
--- a/cmd/utils/cmd.go
+++ b/cmd/utils/cmd.go
@@ -33,9 +33,9 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethdb"
- "github.com/Determinant/coreth/internal/debug"
+ "github.com/ava-labs/coreth/internal/debug"
"github.com/ethereum/go-ethereum/log"
- "github.com/Determinant/coreth/node"
+ "github.com/ava-labs/coreth/node"
"github.com/ethereum/go-ethereum/rlp"
)
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index d9f0b41..f1c13bb 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -34,7 +34,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/fdlimit"
"github.com/ethereum/go-ethereum/consensus"
- "github.com/Determinant/coreth/consensus/dummy"
+ "github.com/ava-labs/coreth/consensus/dummy"
"github.com/ethereum/go-ethereum/consensus/clique"
"github.com/ethereum/go-ethereum/consensus/ethash"
"github.com/ethereum/go-ethereum/core"
@@ -43,15 +43,15 @@ import (
"github.com/ethereum/go-ethereum/dashboard"
"github.com/ethereum/go-ethereum/eth/downloader"
"github.com/ethereum/go-ethereum/eth/gasprice"
- "github.com/Determinant/coreth/eth"
+ "github.com/ava-labs/coreth/eth"
"github.com/ethereum/go-ethereum/ethdb"
- "github.com/Determinant/coreth/ethstats"
+ "github.com/ava-labs/coreth/ethstats"
"github.com/ethereum/go-ethereum/graphql"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/metrics"
"github.com/ethereum/go-ethereum/metrics/influxdb"
- "github.com/Determinant/coreth/miner"
- "github.com/Determinant/coreth/node"
+ "github.com/ava-labs/coreth/miner"
+ "github.com/ava-labs/coreth/node"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/discv5"
"github.com/ethereum/go-ethereum/p2p/enode"
diff --git a/coreth.go b/coreth.go
index 49864c7..f761347 100644
--- a/coreth.go
+++ b/coreth.go
@@ -5,9 +5,9 @@ import (
"io"
"os"
- "github.com/Determinant/coreth/consensus/dummy"
- "github.com/Determinant/coreth/eth"
- "github.com/Determinant/coreth/node"
+ "github.com/ava-labs/coreth/consensus/dummy"
+ "github.com/ava-labs/coreth/eth"
+ "github.com/ava-labs/coreth/node"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
diff --git a/eth/api.go b/eth/api.go
index 34f41db..74d70a5 100644
--- a/eth/api.go
+++ b/eth/api.go
@@ -34,7 +34,7 @@ import (
"github.com/ethereum/go-ethereum/core/rawdb"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
- "github.com/Determinant/coreth/internal/ethapi"
+ "github.com/ava-labs/coreth/internal/ethapi"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/trie"
diff --git a/eth/api_tracer.go b/eth/api_tracer.go
index 7d983fa..db9c1fc 100644
--- a/eth/api_tracer.go
+++ b/eth/api_tracer.go
@@ -36,7 +36,7 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/eth/tracers"
- "github.com/Determinant/coreth/internal/ethapi"
+ "github.com/ava-labs/coreth/internal/ethapi"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/rlp"
"github.com/ethereum/go-ethereum/rpc"
diff --git a/eth/backend.go b/eth/backend.go
index 5f2aa75..1beca28 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -25,11 +25,11 @@ import (
"sync"
"sync/atomic"
- "github.com/Determinant/coreth/consensus/dummy"
- mycore "github.com/Determinant/coreth/core"
- "github.com/Determinant/coreth/internal/ethapi"
- "github.com/Determinant/coreth/miner"
- "github.com/Determinant/coreth/node"
+ "github.com/ava-labs/coreth/consensus/dummy"
+ mycore "github.com/ava-labs/coreth/core"
+ "github.com/ava-labs/coreth/internal/ethapi"
+ "github.com/ava-labs/coreth/miner"
+ "github.com/ava-labs/coreth/node"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
diff --git a/eth/config.go b/eth/config.go
index 9a462bf..b2f6fd4 100644
--- a/eth/config.go
+++ b/eth/config.go
@@ -30,7 +30,7 @@ import (
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/eth/downloader"
"github.com/ethereum/go-ethereum/eth/gasprice"
- "github.com/Determinant/coreth/miner"
+ "github.com/ava-labs/coreth/miner"
"github.com/ethereum/go-ethereum/params"
)
diff --git a/eth/gen_config.go b/eth/gen_config.go
index 74c2a3f..b4020bf 100644
--- a/eth/gen_config.go
+++ b/eth/gen_config.go
@@ -11,7 +11,7 @@ import (
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/eth/downloader"
"github.com/ethereum/go-ethereum/eth/gasprice"
- "github.com/Determinant/coreth/miner"
+ "github.com/ava-labs/coreth/miner"
"github.com/ethereum/go-ethereum/params"
)
diff --git a/ethstats/ethstats.go b/ethstats/ethstats.go
index e680b87..94e7b39 100644
--- a/ethstats/ethstats.go
+++ b/ethstats/ethstats.go
@@ -35,7 +35,7 @@ import (
"github.com/ethereum/go-ethereum/consensus"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types"
- "github.com/Determinant/coreth/eth"
+ "github.com/ava-labs/coreth/eth"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/les"
"github.com/ethereum/go-ethereum/log"
diff --git a/examples/fc/main.go b/examples/fc/main.go
index f336ab5..d6b224c 100644
--- a/examples/fc/main.go
+++ b/examples/fc/main.go
@@ -2,7 +2,7 @@ package main
import (
"os"
- "github.com/Determinant/coreth/cmd/geth"
+ "github.com/ava-labs/coreth/cmd/geth"
)
func checkError(err error) {
diff --git a/examples/payments/main.go b/examples/payments/main.go
index 4445406..ffb156c 100644
--- a/examples/payments/main.go
+++ b/examples/payments/main.go
@@ -11,8 +11,8 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core"
- "github.com/Determinant/coreth/eth"
- "github.com/Determinant/coreth"
+ "github.com/ava-labs/coreth/eth"
+ "github.com/ava-labs/coreth"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/common"
)
diff --git a/node/node.go b/node/node.go
index 5422e2c..decf567 100644
--- a/node/node.go
+++ b/node/node.go
@@ -26,7 +26,7 @@ import (
"strings"
"sync"
- "github.com/Determinant/coreth/internal/debug"
+ "github.com/ava-labs/coreth/internal/debug"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/core/rawdb"
"github.com/ethereum/go-ethereum/ethdb"