Skip to content

Commit 8960ac9

Browse files
committed
update
1 parent cef255d commit 8960ac9

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

bitbay-qt.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ include(src/core.pri)
197197

198198
QWT_CONFIG += QwtPlot
199199
QWT_CONFIG += QwtWidgets
200-
#DEFINES += QWT_MOC_INCLUDE
200+
DEFINES += QWT_MOC_INCLUDE
201201
mac:DEFINES += QWT_MOC_INCLUDE
202202
count(CICD, 1) {
203203
DEFINES += QWT_MOC_INCLUDE

src/clientversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
99
#define CLIENT_VERSION_MAJOR 4
1010
#define CLIENT_VERSION_MINOR 0
11-
#define CLIENT_VERSION_REVISION 1
11+
#define CLIENT_VERSION_REVISION 2
1212
#define CLIENT_VERSION_BUILD 0
1313

1414
// Set to true for release, false for prerelease or test build

src/wallet/bauto2.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -485,14 +485,14 @@ void ThreadBrigeAuto2(CWallet* pwallet) {
485485
LogPrintf("%s thread: bridge %s, nonce %d has processing_time: %d\n",
486486
"bitbay-bauto2", bridge_name, nonce, processing_time);
487487
if (processing_time <= 0) {
488-
continue;
488+
break;
489489
}
490490
int64_t now_time = GetTime();
491-
if (processing_time + interval_time > now_time) {
491+
if (processing_time + 2 * interval_time > now_time) {
492492
LogPrintf(
493493
"%s thread: bridge %s, nonce %d has non-mature processing time : %d\n",
494494
"bitbay-bauto2", bridge_name, nonce, processing_time);
495-
continue;
495+
break;
496496
}
497497

498498
if (!completed) {

0 commit comments

Comments
 (0)