Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conditional fix for specific linux wallet crash #8

Open
zettel-kasten opened this issue Jun 22, 2018 · 0 comments
Open

conditional fix for specific linux wallet crash #8

zettel-kasten opened this issue Jun 22, 2018 · 0 comments

Comments

@zettel-kasten
Copy link
Owner

concern qt wallet for linux.
When clicking on mining tab start/stop mining or changing mining threads the wallet will crash.

Removing this code in miningpage.cpp helps:

if (fGenerate && !hasMiningprivkey && !unlockContext.get())
    {
        this->unlockContext.reset(new WalletModel::UnlockContext(model->requestUnlock()));
        if (!unlockContext->isValid())
        {
            unlockContext.reset(NULL);
            return;
        }
    }

Not sure why exactly this happens, but this provides a temporary solution until we know how to handle this.

zettel-kasten added a commit that referenced this issue Jun 22, 2018
conditional fix for specific linux wallet crash, see issue 8:
#8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant