From 21e12867a451b0357f6b23f51dda45e80e9b8e19 Mon Sep 17 00:00:00 2001 From: Determinant Date: Thu, 15 Aug 2019 01:21:48 -0400 Subject: rewrite import path --- cmd/geth/chaincmd.go | 2 +- cmd/geth/config.go | 6 +++--- cmd/geth/consolecmd.go | 4 ++-- cmd/geth/main.go | 8 ++++---- cmd/geth/misccmd.go | 2 +- cmd/geth/retesteth.go | 2 +- cmd/geth/usage.go | 4 ++-- cmd/utils/cmd.go | 4 ++-- cmd/utils/flags.go | 10 +++++----- 9 files changed, 21 insertions(+), 21 deletions(-) (limited to 'cmd') 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" -- cgit v1.2.3