MCPcopy Create free account
hub / github.com/LUX-Core/lux / GetMnemonic

Method GetMnemonic

src/hdchain.cpp:110–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110bool CHDChain::GetMnemonic(SecureVector& vchMnemonicRet, SecureVector& vchMnemonicPassphraseRet) const
111{
112 // mnemonic was not set, fail
113 if (vchMnemonic.empty())
114 return false;
115
116 vchMnemonicRet = vchMnemonic;
117 vchMnemonicPassphraseRet = vchMnemonicPassphrase;
118 return true;
119}
120
121bool CHDChain::GetMnemonic(SecureString& ssMnemonicRet, SecureString& ssMnemonicPassphraseRet) const
122{

Callers 4

EncryptHDChainMethod · 0.80
DecryptHDChainMethod · 0.80
dumphdinfoFunction · 0.80
dumpwalletFunction · 0.80

Calls 3

emptyMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected