mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 09:42:20 +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);
|
||||
if (!file.open(QIODevice::WriteOnly)) {
|
||||
if (file.open(QIODevice::WriteOnly)) {
|
||||
const char* bio_data;
|
||||
long bio_size = BIO_get_mem_data(bio, &bio_data);
|
||||
|
||||
|
|
Loading…
Reference in a new issue