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

Method GetWalletTx

src/wallet.cpp:137–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135};
136
137const CWalletTx* CWallet::GetWalletTx(const uint256& hash) const
138{
139 LOCK(cs_wallet);
140 std::map<uint256, CWalletTx>::const_iterator it = mapWallet.find(hash);
141 if (it == mapWallet.end())
142 return NULL;
143 return &(it->second);
144}
145
146CPubKey CWallet::GenerateNewKey(uint64_t nAccountIndex, bool internal)
147{

Callers 3

IsTrustedMethod · 0.80
GetInputDarksendRoundsFunction · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected