aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2019-08-29 14:55:28 -0400
committerDeterminant <tederminant@gmail.com>2019-08-29 14:55:28 -0400
commit8c4e5b732d9584ecf9e77a4d93a987adb333d61a (patch)
treeea84ac4cb1ed8ca1bf08525d2739776473b1666d /cmd
parent1c1fa76addab68e04e051df3f38cce9f3bb32d98 (diff)
switch to ava-labs hosted geth
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/chaincmd.go20
-rw-r--r--cmd/geth/config.go6
-rw-r--r--cmd/geth/consolecmd.go4
-rw-r--r--cmd/geth/main.go14
-rw-r--r--cmd/geth/misccmd.go6
-rw-r--r--cmd/geth/retesteth.go38
-rw-r--r--cmd/geth/retesteth_copypaste.go6
-rw-r--r--cmd/utils/cmd.go16
-rw-r--r--cmd/utils/customflags.go2
-rw-r--r--cmd/utils/flags.go52
10 files changed, 82 insertions, 82 deletions
diff --git a/cmd/geth/chaincmd.go b/cmd/geth/chaincmd.go
index 3890099..97b5870 100644
--- a/cmd/geth/chaincmd.go
+++ b/cmd/geth/chaincmd.go
@@ -27,16 +27,16 @@ import (
"time"
"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"
- "github.com/ethereum/go-ethereum/core/rawdb"
- "github.com/ethereum/go-ethereum/core/state"
- "github.com/ethereum/go-ethereum/core/types"
- "github.com/ethereum/go-ethereum/eth/downloader"
- "github.com/ethereum/go-ethereum/event"
- "github.com/ethereum/go-ethereum/log"
- "github.com/ethereum/go-ethereum/trie"
+ "github.com/ava-labs/go-ethereum/common"
+ "github.com/ava-labs/go-ethereum/console"
+ "github.com/ava-labs/go-ethereum/core"
+ "github.com/ava-labs/go-ethereum/core/rawdb"
+ "github.com/ava-labs/go-ethereum/core/state"
+ "github.com/ava-labs/go-ethereum/core/types"
+ "github.com/ava-labs/go-ethereum/eth/downloader"
+ "github.com/ava-labs/go-ethereum/event"
+ "github.com/ava-labs/go-ethereum/log"
+ "github.com/ava-labs/go-ethereum/trie"
"gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/geth/config.go b/cmd/geth/config.go
index 51ca835..b3dc833 100644
--- a/cmd/geth/config.go
+++ b/cmd/geth/config.go
@@ -27,11 +27,11 @@ import (
cli "gopkg.in/urfave/cli.v1"
"github.com/ava-labs/coreth/cmd/utils"
- "github.com/ethereum/go-ethereum/dashboard"
+ "github.com/ava-labs/go-ethereum/dashboard"
"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/ava-labs/go-ethereum/params"
+ whisper "github.com/ava-labs/go-ethereum/whisper/whisperv6"
"github.com/naoina/toml"
)
diff --git a/cmd/geth/consolecmd.go b/cmd/geth/consolecmd.go
index ab44175..57ea2c9 100644
--- a/cmd/geth/consolecmd.go
+++ b/cmd/geth/consolecmd.go
@@ -25,9 +25,9 @@ import (
"syscall"
"github.com/ava-labs/coreth/cmd/utils"
- "github.com/ethereum/go-ethereum/console"
+ "github.com/ava-labs/go-ethereum/console"
"github.com/ava-labs/coreth/node"
- "github.com/ethereum/go-ethereum/rpc"
+ "github.com/ava-labs/go-ethereum/rpc"
"gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index e3d7e9d..82ad47e 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -29,15 +29,15 @@ import (
"github.com/elastic/gosigar"
"github.com/ava-labs/coreth/cmd/utils"
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/console"
+ "github.com/ava-labs/go-ethereum/common"
+ "github.com/ava-labs/go-ethereum/console"
"github.com/ava-labs/coreth/eth"
- "github.com/ethereum/go-ethereum/eth/downloader"
- "github.com/ethereum/go-ethereum/ethclient"
+ "github.com/ava-labs/go-ethereum/eth/downloader"
+ "github.com/ava-labs/go-ethereum/ethclient"
"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/ava-labs/go-ethereum/les"
+ "github.com/ava-labs/go-ethereum/log"
+ "github.com/ava-labs/go-ethereum/metrics"
"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 a960147..a49f2ba 100644
--- a/cmd/geth/misccmd.go
+++ b/cmd/geth/misccmd.go
@@ -24,9 +24,9 @@ import (
"strings"
"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"
+ "github.com/ava-labs/go-ethereum/consensus/ethash"
+ "github.com/ava-labs/go-ethereum/eth"
+ "github.com/ava-labs/go-ethereum/params"
"gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/geth/retesteth.go b/cmd/geth/retesteth.go
index 695e7df..a5bebb0 100644
--- a/cmd/geth/retesteth.go
+++ b/cmd/geth/retesteth.go
@@ -27,25 +27,25 @@ import (
"time"
"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"
- "github.com/ethereum/go-ethereum/consensus"
- "github.com/ethereum/go-ethereum/consensus/ethash"
- "github.com/ethereum/go-ethereum/consensus/misc"
- "github.com/ethereum/go-ethereum/core"
- "github.com/ethereum/go-ethereum/core/rawdb"
- "github.com/ethereum/go-ethereum/core/state"
- "github.com/ethereum/go-ethereum/core/types"
- "github.com/ethereum/go-ethereum/core/vm"
- "github.com/ethereum/go-ethereum/crypto"
- "github.com/ethereum/go-ethereum/ethdb"
- "github.com/ethereum/go-ethereum/log"
- "github.com/ethereum/go-ethereum/node"
- "github.com/ethereum/go-ethereum/params"
- "github.com/ethereum/go-ethereum/rlp"
- "github.com/ethereum/go-ethereum/rpc"
- "github.com/ethereum/go-ethereum/trie"
+ "github.com/ava-labs/go-ethereum/common"
+ "github.com/ava-labs/go-ethereum/common/hexutil"
+ "github.com/ava-labs/go-ethereum/common/math"
+ "github.com/ava-labs/go-ethereum/consensus"
+ "github.com/ava-labs/go-ethereum/consensus/ethash"
+ "github.com/ava-labs/go-ethereum/consensus/misc"
+ "github.com/ava-labs/go-ethereum/core"
+ "github.com/ava-labs/go-ethereum/core/rawdb"
+ "github.com/ava-labs/go-ethereum/core/state"
+ "github.com/ava-labs/go-ethereum/core/types"
+ "github.com/ava-labs/go-ethereum/core/vm"
+ "github.com/ava-labs/go-ethereum/crypto"
+ "github.com/ava-labs/go-ethereum/ethdb"
+ "github.com/ava-labs/go-ethereum/log"
+ "github.com/ava-labs/go-ethereum/node"
+ "github.com/ava-labs/go-ethereum/params"
+ "github.com/ava-labs/go-ethereum/rlp"
+ "github.com/ava-labs/go-ethereum/rpc"
+ "github.com/ava-labs/go-ethereum/trie"
cli "gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/geth/retesteth_copypaste.go b/cmd/geth/retesteth_copypaste.go
index 6061702..b48b007 100644
--- a/cmd/geth/retesteth_copypaste.go
+++ b/cmd/geth/retesteth_copypaste.go
@@ -19,9 +19,9 @@ package geth
import (
"math/big"
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/common/hexutil"
- "github.com/ethereum/go-ethereum/core/types"
+ "github.com/ava-labs/go-ethereum/common"
+ "github.com/ava-labs/go-ethereum/common/hexutil"
+ "github.com/ava-labs/go-ethereum/core/types"
)
// RPCTransaction represents a transaction that will serialize to the RPC representation of a transaction
diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go
index 8207d1f..cf88aec 100644
--- a/cmd/utils/cmd.go
+++ b/cmd/utils/cmd.go
@@ -27,16 +27,16 @@ import (
"strings"
"syscall"
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/core"
- "github.com/ethereum/go-ethereum/core/rawdb"
- "github.com/ethereum/go-ethereum/core/types"
- "github.com/ethereum/go-ethereum/crypto"
- "github.com/ethereum/go-ethereum/ethdb"
+ "github.com/ava-labs/go-ethereum/common"
+ "github.com/ava-labs/go-ethereum/core"
+ "github.com/ava-labs/go-ethereum/core/rawdb"
+ "github.com/ava-labs/go-ethereum/core/types"
+ "github.com/ava-labs/go-ethereum/crypto"
+ "github.com/ava-labs/go-ethereum/ethdb"
"github.com/ava-labs/coreth/internal/debug"
- "github.com/ethereum/go-ethereum/log"
+ "github.com/ava-labs/go-ethereum/log"
"github.com/ava-labs/coreth/node"
- "github.com/ethereum/go-ethereum/rlp"
+ "github.com/ava-labs/go-ethereum/rlp"
)
const (
diff --git a/cmd/utils/customflags.go b/cmd/utils/customflags.go
index e5bf872..e3941e0 100644
--- a/cmd/utils/customflags.go
+++ b/cmd/utils/customflags.go
@@ -27,7 +27,7 @@ import (
"path"
"strings"
- "github.com/ethereum/go-ethereum/common/math"
+ "github.com/ava-labs/go-ethereum/common/math"
"gopkg.in/urfave/cli.v1"
)
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index f1c13bb..683c490 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -29,37 +29,37 @@ import (
"strings"
"time"
- "github.com/ethereum/go-ethereum/accounts"
- "github.com/ethereum/go-ethereum/accounts/keystore"
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/common/fdlimit"
- "github.com/ethereum/go-ethereum/consensus"
+ "github.com/ava-labs/go-ethereum/accounts"
+ "github.com/ava-labs/go-ethereum/accounts/keystore"
+ "github.com/ava-labs/go-ethereum/common"
+ "github.com/ava-labs/go-ethereum/common/fdlimit"
+ "github.com/ava-labs/go-ethereum/consensus"
"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"
- "github.com/ethereum/go-ethereum/core/vm"
- "github.com/ethereum/go-ethereum/crypto"
- "github.com/ethereum/go-ethereum/dashboard"
- "github.com/ethereum/go-ethereum/eth/downloader"
- "github.com/ethereum/go-ethereum/eth/gasprice"
+ "github.com/ava-labs/go-ethereum/consensus/clique"
+ "github.com/ava-labs/go-ethereum/consensus/ethash"
+ "github.com/ava-labs/go-ethereum/core"
+ "github.com/ava-labs/go-ethereum/core/vm"
+ "github.com/ava-labs/go-ethereum/crypto"
+ "github.com/ava-labs/go-ethereum/dashboard"
+ "github.com/ava-labs/go-ethereum/eth/downloader"
+ "github.com/ava-labs/go-ethereum/eth/gasprice"
"github.com/ava-labs/coreth/eth"
- "github.com/ethereum/go-ethereum/ethdb"
+ "github.com/ava-labs/go-ethereum/ethdb"
"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/ava-labs/go-ethereum/graphql"
+ "github.com/ava-labs/go-ethereum/log"
+ "github.com/ava-labs/go-ethereum/metrics"
+ "github.com/ava-labs/go-ethereum/metrics/influxdb"
"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"
- "github.com/ethereum/go-ethereum/p2p/nat"
- "github.com/ethereum/go-ethereum/p2p/netutil"
- "github.com/ethereum/go-ethereum/params"
- "github.com/ethereum/go-ethereum/rpc"
- whisper "github.com/ethereum/go-ethereum/whisper/whisperv6"
+ "github.com/ava-labs/go-ethereum/p2p"
+ "github.com/ava-labs/go-ethereum/p2p/discv5"
+ "github.com/ava-labs/go-ethereum/p2p/enode"
+ "github.com/ava-labs/go-ethereum/p2p/nat"
+ "github.com/ava-labs/go-ethereum/p2p/netutil"
+ "github.com/ava-labs/go-ethereum/params"
+ "github.com/ava-labs/go-ethereum/rpc"
+ whisper "github.com/ava-labs/go-ethereum/whisper/whisperv6"
pcsclite "github.com/gballet/go-libpcsclite"
cli "gopkg.in/urfave/cli.v1"
)