mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #15457 from davidkelly/dk/22291
Tiny logical error in wallet creation
This commit is contained in:
commit
766854081a
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