mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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