Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bitgamma authored Dec 18, 2020
1 parent 6b0669f commit ff26476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Keycard/BIP32KeyPair.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public struct BIP32KeyPair {
}

public init(fromSeed binarySeed: [UInt8]) {
let mac = Crypto.shared.hmacSHA512(data: binarySeed, key: Array("Bitcoin Seed".utf8))
let mac = Crypto.shared.hmacSHA512(data: binarySeed, key: Array("Bitcoin seed".utf8))
self.init(privateKey: Array(mac[0..<32]), chainCode: Array(mac[32...]), publicKey: nil)
}

Expand Down

0 comments on commit ff26476

Please sign in to comment.