Exemplo n.º 1
0
void WalletStack::unlockWallet()
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->unlockWallet();
}
Exemplo n.º 2
0
void WalletFrame::unlockWallet()
{
    WalletView *walletView = currentWalletView();
    if (walletView)
        walletView->unlockWallet();
}
Exemplo n.º 3
0
void WalletFrame::unlockWallet(AskPassphraseDialog::Context context)
{
    WalletView* walletView = currentWalletView();
    if (walletView)
        walletView->unlockWallet(context);
}