Skip to content

Commit

Permalink
Rewrite import URL
Browse files Browse the repository at this point in the history
  • Loading branch information
jyap808 committed Dec 9, 2016
1 parent d38fd5a commit 2bdbed5
Show file tree
Hide file tree
Showing 15 changed files with 35 additions and 35 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

![Miner's stats page](https://15254b2dcaab7f5478ab-24461f391e20b7336331d5789078af53.ssl.cf1.rackcdn.com/ethereum.vanillaforums.com/editor/pe/cf77cki0pjpt.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/ubiq/open-ethereum-pool)](https://goreportcard.com/report/github.com/ubiq/open-ethereum-pool)

[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/ubiq/open-ethereum-pool/wiki/List-Of-Open-Pools)

### Features

Expand Down Expand Up @@ -38,7 +38,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/ubiq/open-ethereum-pool.git
cd open-ethereum-pool
make

Expand Down
4 changes: 2 additions & 2 deletions api/server.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/storage"
"github.com/ubiq/open-ethereum-pool/util"
)

type ApiConfig struct {
Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/api"
"github.com/ubiq/open-ethereum-pool/payouts"
"github.com/ubiq/open-ethereum-pool/proxy"
"github.com/ubiq/open-ethereum-pool/storage"
)

var cfg proxy.Config
Expand Down
6 changes: 3 additions & 3 deletions payouts/payer.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/rpc"
"github.com/ubiq/open-ethereum-pool/storage"
"github.com/ubiq/open-ethereum-pool/util"
)

const txCheckInterval = 5 * time.Second
Expand Down
6 changes: 3 additions & 3 deletions payouts/unlocker.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/rpc"
"github.com/ubiq/open-ethereum-pool/storage"
"github.com/ubiq/open-ethereum-pool/util"
)

type UnlockerConfig struct {
Expand Down
4 changes: 2 additions & 2 deletions payouts/unlocker_test.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/rpc"
"github.com/ubiq/open-ethereum-pool/storage"
)

func TestMain(m *testing.M) {
Expand Down
4 changes: 2 additions & 2 deletions policy/policy.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/storage"
"github.com/ubiq/open-ethereum-pool/util"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions proxy/blocks.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/rpc"
"github.com/ubiq/open-ethereum-pool/util"
)

const maxBacklog = 3
Expand Down
8 changes: 4 additions & 4 deletions proxy/config.go
Original file line number Diff line number Diff line change
@@ -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/ubiq/open-ethereum-pool/api"
"github.com/ubiq/open-ethereum-pool/payouts"
"github.com/ubiq/open-ethereum-pool/policy"
"github.com/ubiq/open-ethereum-pool/storage"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions proxy/handlers.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/rpc"
"github.com/ubiq/open-ethereum-pool/util"
)

// Allow only lowercase hexadecimal with 0x prefix
Expand Down
8 changes: 4 additions & 4 deletions proxy/proxy.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/policy"
"github.com/ubiq/open-ethereum-pool/rpc"
"github.com/ubiq/open-ethereum-pool/storage"
"github.com/ubiq/open-ethereum-pool/util"
)

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

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

const (
Expand Down
2 changes: 1 addition & 1 deletion rpc/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

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

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

type RPCClient struct {
Expand Down
2 changes: 1 addition & 1 deletion storage/redis.go
Original file line number Diff line number Diff line change
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/ubiq/open-ethereum-pool/util"
)

type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion www/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<footer class="footer">
<div class="container">
<p class="text-muted">&copy; CHANGEME in app/templates/index.html |
Powered by <a href="https://github.com/sammy007/open-ethereum-pool" target="_blank">open-ethereum-pool</a> |
Powered by <a href="https://github.com/ubiq/open-ethereum-pool" target="_blank">open-ethereum-pool</a> |
<strong>Dev ETH/ETC:</strong>
<a href="https://etherscan.io/address/0xb85150eb365e7df0941f0cf08235f987ba91506a" rel="nofollow" target="_blank">
0xb85150eb365e7df0941f0cf08235f987ba91506a
Expand Down

0 comments on commit 2bdbed5

Please sign in to comment.