'derivedKey' is inaccessible due to 'internal' protection level
623637646 opened this issue · 4 comments
623637646 commented
Current behavior
let mnemonic = try! Mnemonic.generate()
let seed = Mnemonic.seed(mnemonic: mnemonic)
let keychain = HDKeychain(seed: seed, network: .mainnet)
let privateKey = try! keychain.derivedKey(path: "m/44'/1'/0'/0/0")
compile error: 'derivedKey' is inaccessible due to 'internal' protection level
Expected behavior
compile successfully.
Environment
- BitcoinKit: 1.0.2
- Xcode Version: 10.2 (10E125)
- Swift Version: 5.0
623637646 commented
Hope release a new stable version soon.
usatie commented
@623637646 Thank you.
For now you can use 1.1.0-beta4
.
623637646 commented
Thanks