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

Method removeWallet

src/qt/walletframe.cpp:92–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92bool WalletFrame::removeWallet(const QString& name)
93{
94 if (mapWalletViews.count(name) == 0)
95 return false;
96
97 WalletView* walletView = mapWalletViews.take(name);
98 walletStack->removeWidget(walletView);
99 delete walletView;
100 return true;
101}
102
103void WalletFrame::removeAllWallets()
104{

Callers

nothing calls this directly

Calls 2

takeMethod · 0.80
countMethod · 0.45

Tested by

no test coverage detected