diff options
author | Determinant <[email protected]> | 2019-08-29 14:55:28 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-08-29 14:55:28 -0400 |
commit | 8c4e5b732d9584ecf9e77a4d93a987adb333d61a (patch) | |
tree | ea84ac4cb1ed8ca1bf08525d2739776473b1666d /cmd/utils | |
parent | 1c1fa76addab68e04e051df3f38cce9f3bb32d98 (diff) |
switch to ava-labs hosted geth
Diffstat (limited to 'cmd/utils')
-rw-r--r-- | cmd/utils/cmd.go | 16 | ||||
-rw-r--r-- | cmd/utils/customflags.go | 2 | ||||
-rw-r--r-- | cmd/utils/flags.go | 52 |
3 files changed, 35 insertions, 35 deletions
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" ) |