Skip to content

Commit

Permalink
Changelog30714 (#1216)
Browse files Browse the repository at this point in the history
- Update changelog
- Remove CBR code
  • Loading branch information
tomasbrod authored and denravonska committed Jul 17, 2018
1 parent ccee87c commit dc158ac
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 11 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,55 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [3.7.14.0] 2018-07-17
### Added
- Support for Qt 5.9 (@thecharlatan)
- Compatibility with boost-1.67 (@ravon)
- Calculations to reduce network time offset (@jamescowens)
- Feedback for addnode RPC command (@tomasbrod)
- Added data acquisiton commands (@tomasbrod):
- getrecentblocks
- exportstats1
- getsupervotes
- /var/lib/boinc/ as a valid boinc path on Linux (@rsparlin)
- Stress testing script (@Foggyx420)
- refhash command also on linux (@jamescowens)
- Documentation for out of source build (@thecharlatan)

### Changed
- More accurate time to stake and network weight estimations (@jamescowens)
- Compressed image files (@Peppernrino)
- Poll (voting) code refactoring (@thecharlatan)
- BITCOIN optimize command listunspent (@Foggyx420)
- RPC server refactoring (Wladimir J. van der Laan) (@thecharlatan)
- Replace json spirit with Univalue JSON library (@thecharlatan)
- Change repository URL (@Foggyx420)
- Pretty-print rpc output (@ravon)
- Logging for debugging reward computation (@tomasbrod)
- Clean-up beacon manipulation (@Foggyx420)

### Fixed
- Building errors on Mac releated to SVG framework (@thecharlatan)
- neural data response
- neural network fixes (@Foggyx420)
- investor cpid's appearing as zeros in block index (@tomasbrod)
- ensure that daemon functionality is correct when built together with gui wallet (@jamescowens)
- improve logging, remove empty lines (@jamescowens) (@Foggyx420) (@tomasbrod) (@ravon)
- windows socket warnings (@thecharlatan)

### Removed
- unused components of neural network (@Foggyx420)
- GRCRestarter (@Foggyx420)
- Galaza (game) (@Foggyx420)
- unused images (@barton2526)
- unused code (@Foggyx420) (@Pythonix)
- unusual activity report (@tomasbrod)
- burnamount and recipient from appcache (@tomasbrod)
- GUI FAQ (@Lenni)
- unusable limit from magnitude command (@Foggyx420)
- cgminer support (@Foggyx420)
- deprecated menu items (@jamescowens)

## [3.7.13.0] 2018-06-02, leisure
### Fixed
- Fix voting regression when done from the UI, #1133 (@Foggyx420).
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -2,8 +2,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 3)
define(_CLIENT_VERSION_MINOR, 7)
define(_CLIENT_VERSION_REVISION, 13)
define(_CLIENT_VERSION_BUILD, 3)
define(_CLIENT_VERSION_REVISION, 14)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, false)
define(_COPYRIGHT_YEAR, 2018)
define(_COPYRIGHT_HOLDERS,[The %s developers])
Expand Down
4 changes: 2 additions & 2 deletions contrib/Installer/boinc/boinc/My Project/AssemblyInfo.vb
Expand Up @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.20.8.85")>
<Assembly: AssemblyFileVersion("1.20.8.85")>
<Assembly: AssemblyVersion("1.20.8.86")>
<Assembly: AssemblyFileVersion("1.20.8.86")>
2 changes: 1 addition & 1 deletion contrib/Installer/boinc/boinc/Utilization.vb
Expand Up @@ -14,7 +14,7 @@ Public Class Utilization
Private mlSpeakMagnitude As Double
Public ReadOnly Property Version As Double
Get
Return 429
Return 430
End Get
End Property

Expand Down
6 changes: 0 additions & 6 deletions src/main.cpp
Expand Up @@ -2135,12 +2135,6 @@ int64_t GetProofOfStakeReward(uint64_t nCoinAge, int64_t nFees, std::string cpid
// TestNet: Ensure no magnitudes are out of bounds to ensure we do not generate an insane payment : PASS (Lifetime PPD takes care of this)
// TestNet: Any subsidy with a duration wider than 6 months should not be paid : PASS

/* Constant Block Reward */
AppCacheEntry oCBReward= ReadCache("constblkreward","constblkreward");
int64_t nCBReward = RoundFromString(oCBReward.value,12);
if(nCBReward && fTestNet && GetBoolArg("-constblkreward",true))
nInterest= nCBReward;

int64_t maxStakeReward = GetMaximumBoincSubsidy(nTime) * COIN * 255;

if (nBoinc > maxStakeReward) nBoinc = maxStakeReward;
Expand Down

0 comments on commit dc158ac

Please sign in to comment.