Skip to content

Commit bbf3fe7

Browse files
committed
Move mux PRC package
1 parent efcafe8 commit bbf3fe7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+52
-52
lines changed

blockproducer/chain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3838
"github.com/CovenantSQL/CovenantSQL/proto"
3939
"github.com/CovenantSQL/CovenantSQL/route"
40-
"github.com/CovenantSQL/CovenantSQL/rpc"
40+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
4141
"github.com/CovenantSQL/CovenantSQL/types"
4242
"github.com/CovenantSQL/CovenantSQL/utils/log"
4343
xi "github.com/CovenantSQL/CovenantSQL/xenomint/interfaces"

blockproducer/chain_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
"github.com/CovenantSQL/CovenantSQL/crypto/hash"
3333
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3434
"github.com/CovenantSQL/CovenantSQL/proto"
35-
"github.com/CovenantSQL/CovenantSQL/rpc"
35+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
3636
"github.com/CovenantSQL/CovenantSQL/types"
3737
)
3838

blockproducer/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"time"
2121

2222
"github.com/CovenantSQL/CovenantSQL/proto"
23-
"github.com/CovenantSQL/CovenantSQL/rpc"
23+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
2424
"github.com/CovenantSQL/CovenantSQL/types"
2525
)
2626

client/conn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3131
"github.com/CovenantSQL/CovenantSQL/proto"
3232
"github.com/CovenantSQL/CovenantSQL/route"
33-
"github.com/CovenantSQL/CovenantSQL/rpc"
33+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
3434
"github.com/CovenantSQL/CovenantSQL/types"
3535
"github.com/CovenantSQL/CovenantSQL/utils/log"
3636
"github.com/CovenantSQL/CovenantSQL/utils/trace"

client/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3838
"github.com/CovenantSQL/CovenantSQL/proto"
3939
"github.com/CovenantSQL/CovenantSQL/route"
40-
"github.com/CovenantSQL/CovenantSQL/rpc"
40+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
4141
"github.com/CovenantSQL/CovenantSQL/types"
4242
"github.com/CovenantSQL/CovenantSQL/utils"
4343
"github.com/CovenantSQL/CovenantSQL/utils/log"

client/helper_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3535
"github.com/CovenantSQL/CovenantSQL/proto"
3636
"github.com/CovenantSQL/CovenantSQL/route"
37-
"github.com/CovenantSQL/CovenantSQL/rpc"
37+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
3838
"github.com/CovenantSQL/CovenantSQL/types"
3939
"github.com/CovenantSQL/CovenantSQL/utils"
4040
"github.com/CovenantSQL/CovenantSQL/utils/log"

cmd/cql-faucet/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3838
"github.com/CovenantSQL/CovenantSQL/proto"
3939
"github.com/CovenantSQL/CovenantSQL/route"
40-
"github.com/CovenantSQL/CovenantSQL/rpc"
40+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
4141
"github.com/CovenantSQL/CovenantSQL/types"
4242
"github.com/CovenantSQL/CovenantSQL/utils/log"
4343
)

cmd/cql-minerd/dbms.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
"github.com/CovenantSQL/CovenantSQL/conf"
2323
"github.com/CovenantSQL/CovenantSQL/crypto/hash"
24-
"github.com/CovenantSQL/CovenantSQL/rpc"
24+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
2525
"github.com/CovenantSQL/CovenantSQL/worker"
2626
)
2727

cmd/cql-minerd/integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import (
4646
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
4747
"github.com/CovenantSQL/CovenantSQL/proto"
4848
"github.com/CovenantSQL/CovenantSQL/route"
49-
"github.com/CovenantSQL/CovenantSQL/rpc"
49+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
5050
"github.com/CovenantSQL/CovenantSQL/test"
5151
"github.com/CovenantSQL/CovenantSQL/types"
5252
"github.com/CovenantSQL/CovenantSQL/utils"
@@ -801,7 +801,7 @@ func benchMiner(b *testing.B, minerCount uint16) {
801801
// create
802802
meta := client.ResourceMeta{
803803
ResourceMeta: types.ResourceMeta{
804-
Node: minerCount,
804+
Node: minerCount,
805805
UseEventualConsistency: benchEventualConsistency,
806806
},
807807
}

cmd/cql-minerd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
"github.com/CovenantSQL/CovenantSQL/crypto/asymmetric"
3535
"github.com/CovenantSQL/CovenantSQL/crypto/kms"
3636
"github.com/CovenantSQL/CovenantSQL/metric"
37-
"github.com/CovenantSQL/CovenantSQL/rpc"
37+
rpc "github.com/CovenantSQL/CovenantSQL/rpc/mux"
3838
"github.com/CovenantSQL/CovenantSQL/utils"
3939
"github.com/CovenantSQL/CovenantSQL/utils/log"
4040
_ "github.com/CovenantSQL/CovenantSQL/utils/log/debug"

0 commit comments

Comments
 (0)