This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
forked from steemit/steem
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added votable auction window. Added returning of auction rewards to r…
…eward poll. #898 Merge pull request #937 from GolosChain/golos-v0.18.4 Golos v0.18.4 Add chain_properties_19 #295 Merge pull request #938 from GolosChain/295-referral-program chain_properties_19 #295 Made auction window votable. Fixed rewards calculations. #898 Merge branch 'master' into golos-v0.19.0 Fix naming in chain_properties_19 #295 Merge pull request #939 from GolosChain/295-chain-propertie Fix naming in chain_properties_19 #295 Updated with current 19.0 Added auction_window_size to wallet update_chain_properties. #898 Fixed some codestyle errors. Changed auction_window_weight to uint128_t. #898 Added HF19 checks. Fixed auction_window_size in update_chain_properties. #898 Added auction_window_max_size constant to config. Added HF19 checks in steem_evaluator. #898 Fixed some comment reward logic in tests. #898 Referral program, ASSERT_REQ_HF improved, HF 19 #295 Merge pull request #942 from GolosChain/295-referral-program-impl2 Referral program implemented #295 Update with current 19.0. #898 Fixed auction window tokens return to reward fund. #898 Renamed modify reward fund function. #898
- Loading branch information
1 parent
9524c4d
commit b247561
Showing
35 changed files
with
1,022 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef STEEMIT_HARDFORK_0_19 | ||
#define STEEMIT_HARDFORK_0_19 19 | ||
#define STEEMIT_HARDFORK_0_19__898 (STEEMIT_HARDFORK_0_19) // Add votable auction window size | ||
#define STEEMIT_HARDFORK_0_19__295 (STEEMIT_HARDFORK_0_19) // Referral program implemented | ||
|
||
#ifdef STEEMIT_BUILD_TESTNET | ||
#define STEEMIT_HARDFORK_0_19_TIME 1534755600 // 20 aug 2018 12:00:00 MSK | ||
#else | ||
#define STEEMIT_HARDFORK_0_19_TIME 1543654800 // 01 dec 2018 12:00:00 MSK - fake date | ||
#endif | ||
|
||
#define STEEMIT_HARDFORK_0_19_VERSION hardfork_version( 0, 19 ) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.