diff --git a/payouts/payer.go b/payouts/payer.go index 5c3e03d..8704e32 100644 --- a/payouts/payer.go +++ b/payouts/payer.go @@ -10,7 +10,7 @@ import ( "sync" "time" - "github.com/etclabscore/core-geth/common/hexutil" + "github.com/ethereum/go-ethereum/common/hexutil" "github.com/yuriy0803/open-etc-pool-friends/rpc" "github.com/yuriy0803/open-etc-pool-friends/storage" diff --git a/proxy/blocks.go b/proxy/blocks.go index df99b91..936eedd 100644 --- a/proxy/blocks.go +++ b/proxy/blocks.go @@ -7,7 +7,7 @@ import ( "strings" "sync" - "github.com/etclabscore/core-geth/common" + "github.com/ethereum/go-ethereum/common" "github.com/yuriy0803/open-etc-pool-friends/rpc" "github.com/yuriy0803/open-etc-pool-friends/util" ) diff --git a/proxy/miner.go b/proxy/miner.go index b60301d..f243a4e 100644 --- a/proxy/miner.go +++ b/proxy/miner.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/etclabscore/core-geth/common" + "github.com/ethereum/go-ethereum/common" "github.com/yuriy0803/etchash" "github.com/yuriy0803/open-etc-pool-friends/util" ) diff --git a/rpc/rpc.go b/rpc/rpc.go index 6ebd6a9..07ba2db 100644 --- a/rpc/rpc.go +++ b/rpc/rpc.go @@ -12,7 +12,7 @@ import ( "strings" "sync" - "github.com/etclabscore/core-geth/common/hexutil" + "github.com/ethereum/go-ethereum/common/hexutil" "github.com/yuriy0803/open-etc-pool-friends/util" ) diff --git a/util/util.go b/util/util.go index 9d8e406..0431ef8 100644 --- a/util/util.go +++ b/util/util.go @@ -6,9 +6,9 @@ import ( "strconv" "time" - "github.com/etclabscore/core-geth/common" - "github.com/etclabscore/core-geth/common/hexutil" - "github.com/etclabscore/core-geth/common/math" + "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/ethereum/go-ethereum/common/math" ) var Ether = math.BigPow(10, 18)