Skip to content

Commit

Permalink
Merge pull request #169 from akifumi/fix-PublicKey-initializer
Browse files Browse the repository at this point in the history
Change PublicKey initializer scope to public.
  • Loading branch information
usatie authored Sep 24, 2018
2 parents bb89029 + 6ee741c commit 55a6f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/BitcoinKit/Core/Keys/PublicKey.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public struct PublicKey {
public let network: Network
public let isCompressed: Bool

init(bytes data: Data, network: Network) {
public init(bytes data: Data, network: Network) {
self.data = data
self.network = network
let header = data[0]
Expand Down

0 comments on commit 55a6f8a

Please sign in to comment.