#
getPrivateKey
Returns a string encoded private key.
#
Type
;() => string
#
Return Value
Returns a string encoded BIP32 private key.
#
Example
import { Computer } from '@bitcoin-computer/lib'
import { expect } from '../../utils'
describe('getPrivateKey', () => {
it('Should return the private key', async () => {
const computer = new Computer()
expect(typeof computer.getPrivateKey()).eq('string')
})
})