diff options
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/client.go | 2 | ||||
-rw-r--r-- | rpc/client_example_test.go | 2 | ||||
-rw-r--r-- | rpc/client_test.go | 4 | ||||
-rw-r--r-- | rpc/endpoints.go | 2 | ||||
-rw-r--r-- | rpc/http.go | 2 | ||||
-rw-r--r-- | rpc/ipc.go | 4 | ||||
-rw-r--r-- | rpc/ipc_unix.go | 2 | ||||
-rw-r--r-- | rpc/json.go | 2 | ||||
-rw-r--r-- | rpc/server.go | 2 | ||||
-rw-r--r-- | rpc/types.go | 2 | ||||
-rw-r--r-- | rpc/types_test.go | 2 | ||||
-rw-r--r-- | rpc/websocket.go | 2 |
12 files changed, 14 insertions, 14 deletions
diff --git a/rpc/client.go b/rpc/client.go index 2b5e79848..c41ad389b 100644 --- a/rpc/client.go +++ b/rpc/client.go @@ -32,7 +32,7 @@ import ( "sync/atomic" "time" - "github.com/dexon-foundation/dexon/log" + "github.com/tangerine-network/go-tangerine/log" ) var ( diff --git a/rpc/client_example_test.go b/rpc/client_example_test.go index 261c6fb70..15a27a308 100644 --- a/rpc/client_example_test.go +++ b/rpc/client_example_test.go @@ -22,7 +22,7 @@ import ( "math/big" "time" - "github.com/dexon-foundation/dexon/rpc" + "github.com/tangerine-network/go-tangerine/rpc" ) // In this example, our client wishes to track the latest 'block number' diff --git a/rpc/client_test.go b/rpc/client_test.go index ecb550521..5770e9358 100644 --- a/rpc/client_test.go +++ b/rpc/client_test.go @@ -31,7 +31,7 @@ import ( "time" "github.com/davecgh/go-spew/spew" - "github.com/dexon-foundation/dexon/log" + "github.com/tangerine-network/go-tangerine/log" ) func TestClientRequest(t *testing.T) { @@ -323,7 +323,7 @@ func TestClientSubscribeClose(t *testing.T) { } } -// This test reproduces https://github.com/dexon-foundation/dexon/issues/17837 where the +// This test reproduces https://github.com/tangerine-network/go-tangerine/issues/17837 where the // client hangs during shutdown when Unsubscribe races with Client.Close. func TestClientCloseUnsubscribeRace(t *testing.T) { service := &NotificationTestService{} diff --git a/rpc/endpoints.go b/rpc/endpoints.go index bf5f650aa..875959624 100644 --- a/rpc/endpoints.go +++ b/rpc/endpoints.go @@ -19,7 +19,7 @@ package rpc import ( "net" - "github.com/dexon-foundation/dexon/log" + "github.com/tangerine-network/go-tangerine/log" ) // StartHTTPEndpoint starts the HTTP RPC endpoint, configured with cors/vhosts/modules diff --git a/rpc/http.go b/rpc/http.go index 4c2e16a50..2ecb2166e 100644 --- a/rpc/http.go +++ b/rpc/http.go @@ -31,8 +31,8 @@ import ( "sync" "time" - "github.com/dexon-foundation/dexon/log" "github.com/rs/cors" + "github.com/tangerine-network/go-tangerine/log" ) const ( diff --git a/rpc/ipc.go b/rpc/ipc.go index 1dc318e2d..d6043d249 100644 --- a/rpc/ipc.go +++ b/rpc/ipc.go @@ -20,8 +20,8 @@ import ( "context" "net" - "github.com/dexon-foundation/dexon/log" - "github.com/dexon-foundation/dexon/p2p/netutil" + "github.com/tangerine-network/go-tangerine/log" + "github.com/tangerine-network/go-tangerine/p2p/netutil" ) // ServeListener accepts connections on l, serving JSON-RPC on them. diff --git a/rpc/ipc_unix.go b/rpc/ipc_unix.go index c6218dbd9..e1624ca92 100644 --- a/rpc/ipc_unix.go +++ b/rpc/ipc_unix.go @@ -25,7 +25,7 @@ import ( "os" "path/filepath" - "github.com/dexon-foundation/dexon/log" + "github.com/tangerine-network/go-tangerine/log" ) /* diff --git a/rpc/json.go b/rpc/json.go index 1853a715f..42acff8f9 100644 --- a/rpc/json.go +++ b/rpc/json.go @@ -26,7 +26,7 @@ import ( "strings" "sync" - "github.com/dexon-foundation/dexon/log" + "github.com/tangerine-network/go-tangerine/log" ) const ( diff --git a/rpc/server.go b/rpc/server.go index bdd1877ab..2fdbd660e 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -26,7 +26,7 @@ import ( "sync/atomic" mapset "github.com/deckarep/golang-set" - "github.com/dexon-foundation/dexon/log" + "github.com/tangerine-network/go-tangerine/log" ) const MetadataApi = "rpc" diff --git a/rpc/types.go b/rpc/types.go index 368e840f0..e5b3e3648 100644 --- a/rpc/types.go +++ b/rpc/types.go @@ -24,7 +24,7 @@ import ( "sync" mapset "github.com/deckarep/golang-set" - "github.com/dexon-foundation/dexon/common/hexutil" + "github.com/tangerine-network/go-tangerine/common/hexutil" ) // API describes the set of methods offered over the RPC interface diff --git a/rpc/types_test.go b/rpc/types_test.go index cd0859925..6fe51740f 100644 --- a/rpc/types_test.go +++ b/rpc/types_test.go @@ -20,7 +20,7 @@ import ( "encoding/json" "testing" - "github.com/dexon-foundation/dexon/common/math" + "github.com/tangerine-network/go-tangerine/common/math" ) func TestBlockNumberJSONUnmarshal(t *testing.T) { diff --git a/rpc/websocket.go b/rpc/websocket.go index 8874e5e60..0c8749aad 100644 --- a/rpc/websocket.go +++ b/rpc/websocket.go @@ -31,7 +31,7 @@ import ( "time" mapset "github.com/deckarep/golang-set" - "github.com/dexon-foundation/dexon/log" + "github.com/tangerine-network/go-tangerine/log" "golang.org/x/net/websocket" ) |