Skip to content

Commit

Permalink
ci: run lint in all subdirectories
Browse files Browse the repository at this point in the history
  • Loading branch information
octobocto committed Sep 12, 2024
1 parent 4e7f03a commit ec0c0fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build:
go build -v -o ./{{ bin }} .

lint:
golangci-lint run .
golangci-lint run --exclude-dirs gen

format: format-go format-proto

Expand Down
1 change: 0 additions & 1 deletion server/drivechain_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import (
var _ rpc.DrivechainServiceHandler = new(Bitcoind)

func (b *Bitcoind) CreateSidechainDeposit(ctx context.Context, c *connect.Request[pb.CreateSidechainDepositRequest]) (*connect.Response[pb.CreateSidechainDepositResponse], error) {

type rawCreateResponse struct {
TXID string `json:"txid"`
Errors []string // May be empty
Expand Down

0 comments on commit ec0c0fa

Please sign in to comment.