Skip to content

Commit

Permalink
Change Segwit to SegWit in newaccountdialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeShark committed May 10, 2017
1 parent b3cfbd7 commit d8381d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/newaccountdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ NewAccountDialog::NewAccountDialog(const QList<QString>& allKeychains, const QLi
// Segwit Support
if (getCoinParams().segwit_enabled())
{
segwitCheckBox = new QCheckBox(tr("Use Seg&wit"), this);
segwitCheckBox = new QCheckBox(tr("Use Seg&Wit"), this);
segwitCheckBox->setChecked(true);
}
else
{
segwitCheckBox = new QCheckBox(tr("Use Seg&wit (not active on this blockchain)"), this);
segwitCheckBox = new QCheckBox(tr("Use Seg&Wit (not active on this blockchain)"), this);
segwitCheckBox->setEnabled(false);
}

Expand Down

0 comments on commit d8381d2

Please sign in to comment.