Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sidecar
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
link33
sidecar
Commits
67f42488
Commit
67f42488
authored
Oct 28, 2021
by
suyanlong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🐛
make fmt
parent
b10ba5c8
Pipeline
#8183
canceled with stages
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
0 deletions
+7
-0
mock_client.go
hub/client/mock_client/mock_client.go
+1
-0
mock_executor.go
internal/appchain/mock_executor/mock_executor.go
+1
-0
mock_monitor.go
internal/appchain/mock_monitor/mock_monitor.go
+1
-0
mock_peermgr.go
internal/peermgr/mock_peermgr/mock_peermgr.go
+1
-0
mock_router.go
internal/router/mock_router/mock_router.go
+1
-0
mock_syncer.go
internal/syncer/mock_syncer/mock_syncer.go
+1
-0
mock_client.go
pkg/plugins/mock_client/mock_client.go
+1
-0
No files found.
hub/client/mock_client/mock_client.go
View file @
67f42488
...
@@ -11,6 +11,7 @@ import (
...
@@ -11,6 +11,7 @@ import (
gomock
"github.com/golang/mock/gomock"
gomock
"github.com/golang/mock/gomock"
crypto
"github.com/meshplus/bitxhub-kit/crypto"
crypto
"github.com/meshplus/bitxhub-kit/crypto"
types
"github.com/meshplus/bitxhub-kit/types"
types
"github.com/meshplus/bitxhub-kit/types"
rpcx
"gitlab.33.cn/link33/sidecar/hub/client"
rpcx
"gitlab.33.cn/link33/sidecar/hub/client"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
)
)
...
...
internal/appchain/mock_executor/mock_executor.go
View file @
67f42488
...
@@ -8,6 +8,7 @@ import (
...
@@ -8,6 +8,7 @@ import (
reflect
"reflect"
reflect
"reflect"
gomock
"github.com/golang/mock/gomock"
gomock
"github.com/golang/mock/gomock"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
)
)
...
...
internal/appchain/mock_monitor/mock_monitor.go
View file @
67f42488
...
@@ -8,6 +8,7 @@ import (
...
@@ -8,6 +8,7 @@ import (
reflect
"reflect"
reflect
"reflect"
gomock
"github.com/golang/mock/gomock"
gomock
"github.com/golang/mock/gomock"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
)
)
...
...
internal/peermgr/mock_peermgr/mock_peermgr.go
View file @
67f42488
...
@@ -9,6 +9,7 @@ import (
...
@@ -9,6 +9,7 @@ import (
gomock
"github.com/golang/mock/gomock"
gomock
"github.com/golang/mock/gomock"
peer
"github.com/libp2p/go-libp2p-core/peer"
peer
"github.com/libp2p/go-libp2p-core/peer"
peermgr
"gitlab.33.cn/link33/sidecar/internal/peermgr"
peermgr
"gitlab.33.cn/link33/sidecar/internal/peermgr"
port
"gitlab.33.cn/link33/sidecar/internal/port"
port
"gitlab.33.cn/link33/sidecar/internal/port"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
...
...
internal/router/mock_router/mock_router.go
View file @
67f42488
...
@@ -8,6 +8,7 @@ import (
...
@@ -8,6 +8,7 @@ import (
reflect
"reflect"
reflect
"reflect"
gomock
"github.com/golang/mock/gomock"
gomock
"github.com/golang/mock/gomock"
port
"gitlab.33.cn/link33/sidecar/internal/port"
port
"gitlab.33.cn/link33/sidecar/internal/port"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
)
)
...
...
internal/syncer/mock_syncer/mock_syncer.go
View file @
67f42488
...
@@ -9,6 +9,7 @@ import (
...
@@ -9,6 +9,7 @@ import (
gomock
"github.com/golang/mock/gomock"
gomock
"github.com/golang/mock/gomock"
appchain_mgr
"github.com/meshplus/bitxhub-core/appchain-mgr"
appchain_mgr
"github.com/meshplus/bitxhub-core/appchain-mgr"
syncer
"gitlab.33.cn/link33/sidecar/internal/syncer"
syncer
"gitlab.33.cn/link33/sidecar/internal/syncer"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
)
)
...
...
pkg/plugins/mock_client/mock_client.go
View file @
67f42488
...
@@ -8,6 +8,7 @@ import (
...
@@ -8,6 +8,7 @@ import (
reflect
"reflect"
reflect
"reflect"
gomock
"github.com/golang/mock/gomock"
gomock
"github.com/golang/mock/gomock"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
pb
"gitlab.33.cn/link33/sidecar/model/pb"
plugins
"gitlab.33.cn/link33/sidecar/pkg/plugins"
plugins
"gitlab.33.cn/link33/sidecar/pkg/plugins"
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment