Skip to content

Commit

Permalink
public-payments-fix
Browse files Browse the repository at this point in the history
- PaymentRequest's payments access level has been updated from internal to public one

public-payment-fix

- Another public missing
  • Loading branch information
LukasKorba authored and pacu committed Jul 1, 2024
1 parent bd32863 commit 3506193
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/ZcashPaymentURI/Model.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation

public struct PaymentRequest: Equatable {
let payments: [Payment]
public let payments: [Payment]
}

/// A Single payment that will be requested
Expand Down
2 changes: 1 addition & 1 deletion Sources/ZcashPaymentURI/RecipientAddress.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Foundation
public struct RecipientAddress: Equatable {
public typealias ValidatingClosure = ((String) -> Bool)

let value: String
public let value: String

/// Initialize an opaque Recipient address that's conversible to a String with or without a validating function.
/// - Parameter value: the string representing the recipient
Expand Down

0 comments on commit 3506193

Please sign in to comment.