Skip to content

Commit

Permalink
1.3.4 Version
Browse files Browse the repository at this point in the history
  • Loading branch information
thesolarminer committed Jan 18, 2021
1 parent b90e6bb commit ab9a296
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 3)
define(_CLIENT_VERSION_REVISION, 3)
define(_CLIENT_VERSION_REVISION, 4)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2020)
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "smartcash-linux-1.3.3"
name: "smartcash-linux-1.3.4"
enable_cache: true
suites:
- "trusty"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-osx.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "smartcash-osx-1.3.3"
name: "smartcash-osx-1.3.4"
enable_cache: true
suites:
- "trusty"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-win.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "smartcash-win-1.3.3"
name: "smartcash-win-1.3.4"
enable_cache: true
suites:
- "trusty"
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 3
#define CLIENT_VERSION_REVISION 3
#define CLIENT_VERSION_REVISION 4
#define CLIENT_VERSION_BUILD 0

//! Set to true for release, false for prerelease or test build
Expand Down
2 changes: 1 addition & 1 deletion src/smartmining/miningpayments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ bool SmartMining::Validate(const CBlock &block, CBlockIndex *pindex, CValidation
CAmount expectedCoinbase = nFees + nodeReward + hiveReward + smartReward + miningReward;

if( pindex->nHeight > 1 && coinbase > expectedCoinbase ){
LogPrintf("SmartMining::Validate - Coinbase too high Expected: %d.%08d! %s\n", expectedCoinbase / COIN, expectedCoinbase % COIN, block.vtx[0].ToString());
LogPrintf("SmartMining::Validate - Coinbase %d.%08d is higher than Expected %d.%08d! %s\n", coinbase / COIN, coinbase % COIN, expectedCoinbase / COIN, expectedCoinbase % COIN, block.vtx[0].ToString());
return state.DoS(100, false, REJECT_INVALID,
"CTransaction::CheckTransaction() : Coinbase value too high");
}
Expand Down

0 comments on commit ab9a296

Please sign in to comment.