mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 18:10:37 +02:00
Tiny logical error in wallet creation
This commit is contained in:
parent
da1597c5d1
commit
c63ee8d4f6
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ namespace {
|
||||||
}
|
}
|
||||||
|
|
||||||
QFile file(filename);
|
QFile file(filename);
|
||||||
if (!file.open(QIODevice::WriteOnly)) {
|
if (file.open(QIODevice::WriteOnly)) {
|
||||||
const char* bio_data;
|
const char* bio_data;
|
||||||
long bio_size = BIO_get_mem_data(bio, &bio_data);
|
long bio_size = BIO_get_mem_data(bio, &bio_data);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue