Skip to content

Commit

Permalink
Run goimports with builder
Browse files Browse the repository at this point in the history
  • Loading branch information
tadovas committed Oct 16, 2018
1 parent c61e995 commit 5a65773
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- script: bin/builder_run bin/check_golint
name: "golint check"

- script: bin/check_goimports
- script: bin/builder_run bin/check_goimports
name: "goimports check"

- script: bin/check_license
Expand Down
12 changes: 6 additions & 6 deletions discovery/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ func NewService(
signerCreate identity.SignerFactory,
) *Discovery {
return &Discovery{
identityRegistry: identityRegistry,
identityRegistration: identityRegistration,
mysteriumClient: mysteriumClient,
signerCreate: signerCreate,
statusChan: make(chan Status),
status: StatusUndefined,
identityRegistry: identityRegistry,
identityRegistration: identityRegistration,
mysteriumClient: mysteriumClient,
signerCreate: signerCreate,
statusChan: make(chan Status),
status: StatusUndefined,
proposalAnnouncementStopped: &sync.WaitGroup{},
unsubscribe: func() {},
stop: func() {},
Expand Down

0 comments on commit 5a65773

Please sign in to comment.