Skip to content

Commit

Permalink
Committer: feeleep75
Browse files Browse the repository at this point in the history
	modified:   README.md
	modified:   api/server.go
	modified:   build/env.sh
	modified:   main.go
	modified:   payouts/payer.go
	modified:   payouts/unlocker.go
	modified:   payouts/unlocker_test.go
	modified:   policy/policy.go
	modified:   proxy/blocks.go
	modified:   proxy/config.go
	modified:   proxy/handlers.go
	modified:   proxy/proxy.go
	modified:   proxy/stratum.go
	modified:   rpc/rpc.go
	modified:   storage/redis.go
	modified:   www/app/index.html
  • Loading branch information
root committed Dec 21, 2016
1 parent 750ab8b commit 2fd044e
Show file tree
Hide file tree
Showing 16 changed files with 38 additions and 37 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -2,11 +2,11 @@

![Miner's stats page](https://s22.postimg.io/4rb17sqfl/2016_08_27_12_13_25_Fotos.png)

[![Join the chat at https://gitter.im/sammy007/open-ethereum-pool](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sammy007/open-ethereum-pool?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/sammy007/open-ethereum-pool.svg?branch=develop)](https://travis-ci.org/sammy007/open-ethereum-pool) [![Go Report Card](https://goreportcard.com/badge/github.com/sammy007/open-ethereum-pool)](https://goreportcard.com/report/github.com/sammy007/open-ethereum-pool)
[![Join the chat at https://gitter.im/sammy007/open-ethereum-pool](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sammy007/open-ethereum-pool?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/sammy007/open-ethereum-pool.svg?branch=develop)](https://travis-ci.org/sammy007/open-ethereum-pool) [![Go Report Card](https://goreportcard.com/badge/github.com/feeleep75/open-ethereum-pool)](https://goreportcard.com/report/github.com/feeleep75/open-ethereum-pool)

Pools running with this fork: [EthTeam.com](http://www.ethteam.com)

[List Of Open Ethereum Pools](https://github.com/sammy007/open-ethereum-pool/wiki/List-Of-Open-Pools)
[List Of Open Ethereum Pools](https://github.com/feeleep75/open-ethereum-pool/wiki/List-Of-Open-Pools)

### Features

Expand All @@ -22,7 +22,7 @@ Pools running with this fork: [EthTeam.com](http://www.ethteam.com)

#### Proxies

* [Ether-Proxy](https://github.com/sammy007/ether-proxy) HTTP proxy with web interface
* [Ether-Proxy](https://github.com/feeleep75/ether-proxy) HTTP proxy with web interface
* [Stratum Proxy](https://github.com/Atrides/eth-proxy) for Ethereum

### Building on Linux
Expand All @@ -41,7 +41,7 @@ First install [go-ethereum](https://github.com/ethereum/go-ethereum/wiki/Instal

Clone & compile:

git clone https://github.com/sammy007/open-ethereum-pool.git
git clone https://github.com/feeleep75/open-ethereum-pool.git
cd open-ethereum-pool
make

Expand Down
4 changes: 2 additions & 2 deletions api/server.go
Expand Up @@ -12,8 +12,8 @@ import (

"github.com/gorilla/mux"

"github.com/sammy007/open-ethereum-pool/storage"
"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/util"
)

type ApiConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion build/env.sh
Expand Up @@ -10,7 +10,7 @@ fi
# Create fake Go workspace if it doesn't exist yet.
workspace="$PWD/build/_workspace"
root="$PWD"
ethdir="$workspace/src/github.com/sammy007"
ethdir="$workspace/src/github.com/feeleep75"
if [ ! -L "$ethdir/open-ethereum-pool" ]; then
mkdir -p "$ethdir"
cd "$ethdir"
Expand Down
9 changes: 5 additions & 4 deletions main.go
Expand Up @@ -11,10 +11,10 @@ import (

"github.com/yvasiyarov/gorelic"

"github.com/sammy007/open-ethereum-pool/api"
"github.com/sammy007/open-ethereum-pool/payouts"
"github.com/sammy007/open-ethereum-pool/proxy"
"github.com/sammy007/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/api"
"github.com/feeleep75/open-ethereum-pool/payouts"
"github.com/feeleep75/open-ethereum-pool/proxy"
"github.com/feeleep75/open-ethereum-pool/storage"
)

var cfg proxy.Config
Expand Down Expand Up @@ -84,6 +84,7 @@ func main() {
pong, err := backend.Check()
if err != nil {
log.Printf("Can't establish connection to backend: %v", err)
os.Exit(0)
} else {
log.Printf("Backend check reply: %v", pong)
}
Expand Down
6 changes: 3 additions & 3 deletions payouts/payer.go
Expand Up @@ -10,9 +10,9 @@ import (

"github.com/ethereum/go-ethereum/common"

"github.com/sammy007/open-ethereum-pool/rpc"
"github.com/sammy007/open-ethereum-pool/storage"
"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/rpc"
"github.com/feeleep75/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/util"
)

const txCheckInterval = 5 * time.Second
Expand Down
6 changes: 3 additions & 3 deletions payouts/unlocker.go
Expand Up @@ -10,9 +10,9 @@ import (

"github.com/ethereum/go-ethereum/common"

"github.com/sammy007/open-ethereum-pool/rpc"
"github.com/sammy007/open-ethereum-pool/storage"
"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/rpc"
"github.com/feeleep75/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/util"
)

type UnlockerConfig struct {
Expand Down
4 changes: 2 additions & 2 deletions payouts/unlocker_test.go
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"testing"

"github.com/sammy007/open-ethereum-pool/rpc"
"github.com/sammy007/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/rpc"
"github.com/feeleep75/open-ethereum-pool/storage"
)

func TestMain(m *testing.M) {
Expand Down
4 changes: 2 additions & 2 deletions policy/policy.go
Expand Up @@ -9,8 +9,8 @@ import (
"sync/atomic"
"time"

"github.com/sammy007/open-ethereum-pool/storage"
"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/util"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions proxy/blocks.go
Expand Up @@ -9,8 +9,8 @@ import (

"github.com/ethereum/go-ethereum/common"

"github.com/sammy007/open-ethereum-pool/rpc"
"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/rpc"
"github.com/feeleep75/open-ethereum-pool/util"
)

const maxBacklog = 3
Expand Down
8 changes: 4 additions & 4 deletions proxy/config.go
@@ -1,10 +1,10 @@
package proxy

import (
"github.com/sammy007/open-ethereum-pool/api"
"github.com/sammy007/open-ethereum-pool/payouts"
"github.com/sammy007/open-ethereum-pool/policy"
"github.com/sammy007/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/api"
"github.com/feeleep75/open-ethereum-pool/payouts"
"github.com/feeleep75/open-ethereum-pool/policy"
"github.com/feeleep75/open-ethereum-pool/storage"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions proxy/handlers.go
Expand Up @@ -5,8 +5,8 @@ import (
"regexp"
"strings"

"github.com/sammy007/open-ethereum-pool/rpc"
"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/rpc"
"github.com/feeleep75/open-ethereum-pool/util"
)

// Allow only lowercase hexadecimal with 0x prefix
Expand Down
8 changes: 4 additions & 4 deletions proxy/proxy.go
Expand Up @@ -13,10 +13,10 @@ import (

"github.com/gorilla/mux"

"github.com/sammy007/open-ethereum-pool/policy"
"github.com/sammy007/open-ethereum-pool/rpc"
"github.com/sammy007/open-ethereum-pool/storage"
"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/policy"
"github.com/feeleep75/open-ethereum-pool/rpc"
"github.com/feeleep75/open-ethereum-pool/storage"
"github.com/feeleep75/open-ethereum-pool/util"
)

type ProxyServer struct {
Expand Down
2 changes: 1 addition & 1 deletion proxy/stratum.go
Expand Up @@ -9,7 +9,7 @@ import (
"net"
"time"

"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/util"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion rpc/rpc.go
Expand Up @@ -14,7 +14,7 @@ import (

"github.com/ethereum/go-ethereum/common"

"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/util"
)

type RPCClient struct {
Expand Down
2 changes: 1 addition & 1 deletion storage/redis.go
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"gopkg.in/redis.v3"

"github.com/sammy007/open-ethereum-pool/util"
"github.com/feeleep75/open-ethereum-pool/util"
)

type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion www/app/index.html
Expand Up @@ -26,7 +26,7 @@
<footer class="footer">
<div class="container">
<p class="text-muted">
Powered by <a href="https://github.com/sammy007/open-ethereum-pool" target="_blank">open-ethereum-pool</a>
Powered by <a href="https://github.com/feeleep75/open-ethereum-pool" target="_blank">open-ethereum-pool</a>
</p>
</div>
</footer>
Expand Down

0 comments on commit 2fd044e

Please sign in to comment.