3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-30 14:42:56 +02:00

Merge pull request 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);