Merge pull request #15457 from davidkelly/dk/22291

Tiny logical error in wallet creation
This commit is contained in:
Shannon Romano 2019-04-25 14:10:00 -07:00 committed by GitHub
commit 766854081a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -126,7 +126,7 @@ namespace {
}
QFile file(filename);
if (!file.open(QIODevice::WriteOnly)) {
if (file.open(QIODevice::WriteOnly)) {
const char* bio_data;
long bio_size = BIO_get_mem_data(bio, &bio_data);