| 515 | } |
| 516 | |
| 517 | bool CCryptoKeyStore::GetHDChain(CHDChain& hdChainRet) const |
| 518 | { |
| 519 | if(IsCrypted()) { |
| 520 | hdChainRet = cryptedHDChain; |
| 521 | return !cryptedHDChain.IsNull(); |
| 522 | } |
| 523 | |
| 524 | hdChainRet = hdChain; |
| 525 | return !hdChain.IsNull(); |
| 526 | } |
no test coverage detected