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

Method KeyManager

src/cpp-ethereum/libethcore/KeyManager.cpp:37–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35namespace fs = boost::filesystem;
36
37KeyManager::KeyManager(string const& _keysFile, string const& _secretsPath):
38 m_keysFile(_keysFile), m_store(_secretsPath)
39{
40 for (auto const& uuid: m_store.keys())
41 {
42 auto addr = m_store.address(uuid);
43 m_addrLookup[addr] = uuid;
44 m_uuidLookup[uuid] = addr;
45 }
46}
47
48KeyManager::~KeyManager()
49{}

Callers

nothing calls this directly

Calls 2

keysMethod · 0.45
addressMethod · 0.45

Tested by

no test coverage detected