Skip to content

Commit 1f0ba5d

Browse files
committed
Default to not using SegWit and version bump to 0.10.2
1 parent 0988816 commit 1f0ba5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/newaccountdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ NewAccountDialog::NewAccountDialog(const QList<QString>& allKeychains, const QLi
107107
if (getCoinParams().segwit_enabled())
108108
{
109109
segwitCheckBox = new QCheckBox(tr("Use Seg&Wit"), this);
110-
segwitCheckBox->setChecked(true);
110+
segwitCheckBox->setChecked(false);
111111
}
112112
else
113113
{

src/versioninfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <openssl/opensslv.h>
2020

2121
// Definitions
22-
const QString VERSIONTEXT("0.10.1");
22+
const QString VERSIONTEXT("0.10.2");
2323

2424
const QString commitHash(COMMIT_HASH);
2525
const QString shortCommitHash(QString(COMMIT_HASH).left(7));

0 commit comments

Comments
 (0)