Skip to content

Commit

Permalink
Merge pull request #1333 from pacu/swiftlint
Browse files Browse the repository at this point in the history
[#1332] Enable Swiftlint workflow
  • Loading branch information
LukasKorba authored Feb 5, 2024
2 parents 170408d + 7272b92 commit 10dc5ed
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: SwiftLint

on:
pull_request:
paths:
- '.github/workflows/swiftlint.yml'
- '.swiftlint.yml'
- '**/*.swift'

jobs:
SwiftLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: GitHub Action for SwiftLint
uses: norio-nomura/[email protected]

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ struct BundleCheckpointSource: CheckpointSource {

func birthday(for height: BlockHeight) -> Checkpoint {
Checkpoint.birthday(
with: height,
with: height,
checkpointDirectory: BundleCheckpointURLProvider.default.url(self.network)
) ?? saplingActivation
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,6 @@ protocol LightWalletServiceResponse {
struct LightWalletServiceFactory {
let endpoint: LightWalletEndpoint

init(endpoint: LightWalletEndpoint) {
self.endpoint = endpoint
}

func make() -> LightWalletService {
return LightWalletGRPCService(endpoint: endpoint)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ import libzcashlc
struct ZcashKeyDerivationBackend: ZcashKeyDerivationBackendWelding {
let networkType: NetworkType

init(networkType: NetworkType) {
self.networkType = networkType
}

// MARK: Address metadata and validation
static func getAddressMetadata(_ address: String) -> AddressMetadata? {
var networkId: UInt32 = 0
Expand Down

0 comments on commit 10dc5ed

Please sign in to comment.