Skip to content

Commit

Permalink
Fixed PublicKey initializer to public.
Browse files Browse the repository at this point in the history
  • Loading branch information
akifumi committed Sep 24, 2018
1 parent bb89029 commit 6ee741c
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 6ee741c

Please sign in to comment.