fix: correct module path to dappco.re/go/proxy
Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
parent
c7ada3dd54
commit
b8cf8713c5
14 changed files with 20 additions and 20 deletions
|
|
@ -13,7 +13,7 @@ import (
|
|||
"encoding/json"
|
||||
"net/http"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/proxy"
|
||||
)
|
||||
|
||||
// Router matches the standard http.ServeMux registration shape.
|
||||
|
|
|
|||
2
go.mod
2
go.mod
|
|
@ -1,3 +1,3 @@
|
|||
module dappco.re/go/core/proxy
|
||||
module dappco.re/go/proxy
|
||||
|
||||
go 1.26.0
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/proxy"
|
||||
)
|
||||
|
||||
// NewAccessLog creates an append-only access log.
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import (
|
|||
"net"
|
||||
"sync"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/proxy"
|
||||
)
|
||||
|
||||
// StratumClient is one outbound stratum TCP (optionally TLS) connection to a pool.
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ import (
|
|||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/proxy"
|
||||
)
|
||||
|
||||
// NewStrategyFactory creates a StrategyFactory for the supplied config.
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ package pool
|
|||
import (
|
||||
"sync"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/proxy"
|
||||
)
|
||||
|
||||
// FailoverStrategy wraps an ordered slice of PoolConfig entries.
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ package nicehash
|
|||
import (
|
||||
"time"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/core/proxy/pool"
|
||||
"dappco.re/go/proxy"
|
||||
"dappco.re/go/proxy/pool"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/core/proxy/pool"
|
||||
"dappco.re/go/proxy"
|
||||
"dappco.re/go/proxy/pool"
|
||||
)
|
||||
|
||||
// NonceMapper manages one outbound pool connection and the 256-slot NonceStorage.
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@ package nicehash
|
|||
import (
|
||||
"sync"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/core/proxy/pool"
|
||||
"dappco.re/go/proxy"
|
||||
"dappco.re/go/proxy/pool"
|
||||
)
|
||||
|
||||
// NonceSplitter is the Splitter implementation for NiceHash mode.
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ package nicehash
|
|||
import (
|
||||
"sync"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/proxy"
|
||||
)
|
||||
|
||||
// NonceStorage is the 256-slot fixed-byte allocation table for one NonceMapper.
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ package nicehash
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/proxy"
|
||||
)
|
||||
|
||||
func TestNonceStorage_AddAndRemove(t *testing.T) {
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ package simple
|
|||
import (
|
||||
"time"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/core/proxy/pool"
|
||||
"dappco.re/go/proxy"
|
||||
"dappco.re/go/proxy/pool"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/core/proxy/pool"
|
||||
"dappco.re/go/proxy"
|
||||
"dappco.re/go/proxy/pool"
|
||||
)
|
||||
|
||||
// SimpleMapper holds one outbound pool connection and serves at most one active miner
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ package simple
|
|||
import (
|
||||
"sync"
|
||||
|
||||
"dappco.re/go/core/proxy"
|
||||
"dappco.re/go/core/proxy/pool"
|
||||
"dappco.re/go/proxy"
|
||||
"dappco.re/go/proxy/pool"
|
||||
)
|
||||
|
||||
// SimpleSplitter is the Splitter implementation for simple (passthrough) mode.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue