Skip to content

Commit

Permalink
Released v3.85.14.
Browse files Browse the repository at this point in the history
Implemented a button to send the transaction fee (10 SORA) to the ECDSA side for SORA-QAI encryption.
Fixed a non-functional GUI by adding missing braces.
  • Loading branch information
FromHDDtoSSD committed Jul 25, 2024
1 parent 07caf55 commit bf27f3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SorachanCoinQ-qt.pro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TEMPLATE = app
VERSION = 3.84.14
VERSION = 3.85.14

INCLUDEPATH += src src/json src/qt
QT += core gui network
Expand Down
4 changes: 2 additions & 2 deletions src/qt/rpcconsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,10 @@ void RPCConsole::updateSentMyMessages() {
if(!QMB(QMB::M_QUESTION).setText(tr("If the number of processes is large, "
"the Schnorr aggregated signature process will take a considerable amount of time. "
"Please wait patiently until the process is completed. "
"SORA will notify you once it is finished.").toStdString(), _("")).ask())
"SORA will notify you once it is finished.").toStdString(), _("")).ask()) {
this->raise();
return;

}
this->raise();

uint32_t hours = ui->getsentmessagesSpinBox->value();
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class format_version : private no_instance

// display version
#define DISPLAY_VERSION_MAJOR 3
#define DISPLAY_VERSION_MINOR 84
#define DISPLAY_VERSION_MINOR 85
#define DISPLAY_VERSION_REVISION 14

#endif

0 comments on commit bf27f3d

Please sign in to comment.