Skip to content

Commit

Permalink
Released v3.89.14.
Browse files Browse the repository at this point in the history
Partially modified the decision-making section of SORA-QAI.
  • Loading branch information
FromHDDtoSSD committed Jul 30, 2024
1 parent 73d693c commit 883c96c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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.88.14
VERSION = 3.89.14

INCLUDEPATH += src src/json src/qt
QT += core gui network
Expand Down
3 changes: 2 additions & 1 deletion src/block/block_process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ void wallet_process::AcceptScript(const CTransaction &tx)
break;
if(data.size() >= 35) {
// Skip SORA-QAI Version
if(data.at(data.size() - 34) == 0x03) {
qkey_vector vch(data.begin() + data.size() - 35, data.end() - 2);
if(CqPubKey::IsRandHash(vch) && data.at(data.size() - 34) == 0x03) {
continue;
}
}
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 88
#define DISPLAY_VERSION_MINOR 89
#define DISPLAY_VERSION_REVISION 14

#endif

0 comments on commit 883c96c

Please sign in to comment.