Skip to content

Commit

Permalink
Espers v0.8.7.3 Update-0 Patch-5
Browse files Browse the repository at this point in the history
Changelog

- Toggled PoS3.0 softfork for Fri, 31 Aug 2018 00:00:00 GMT (Must update to this version prior to this time)
- Versioning build bump
- Ready for go-live
  • Loading branch information
CryptoCoderz committed Aug 3, 2018
1 parent 2114d61 commit cf33d2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/fork.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ static const int64_t VELOCITY_TOGGLE = 650000; // Implementation of the Velocity
/** Velocity retarget toggle block */
static const int64_t VELOCITY_TDIFF = 667350; // Use Velocity's retargetting method.
/** Proof-of-Stake Version 3.0 implementation fork */
inline bool IsProtocolV3(int64_t nTime) { return TestNet() || nTime > 9994028400; } // OFF (NOT TOGGLED)
inline bool IsProtocolV3(int64_t nTime) { return TestNet() || nTime > 1535673600; } // ON (TOGGLED Fri, 31 Aug 2018 00:00:00 GMT)

#endif
4 changes: 2 additions & 2 deletions src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const std::string CLIENT_NAME("Espers");
// git will put "#define GIT_ARCHIVE 1" on the next line inside archives.
#define GIT_ARCHIVE 1
#ifdef GIT_ARCHIVE
# define GIT_COMMIT_ID "Patch 4"
# define GIT_COMMIT_DATE "Aug 02, 2018" //$Format:%cD
# define GIT_COMMIT_ID "Patch 5"
# define GIT_COMMIT_DATE "Aug 03, 2018" //$Format:%cD
#endif

#define BUILD_DESC_FROM_COMMIT(maj,min,rev,build,commit) \
Expand Down

0 comments on commit cf33d2e

Please sign in to comment.