-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #829 from bitshares/201805-market-engine-change1
BSIP31-34 market engine improvements
- Loading branch information
Showing
12 changed files
with
1,430 additions
and
115 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 @@ | ||
// bitshares-core issue #338 Fix "margin call order fills at price of matching limit_order" | ||
#ifndef HARDFORK_CORE_338_TIME | ||
#define HARDFORK_CORE_338_TIME (fc::time_point_sec( 1600000000 )) | ||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// bitshares-core issue #343 | ||
// Fix "Inconsistent sorting of call orders between matching against a limit order and a force settle order" | ||
#ifndef HARDFORK_CORE_343_TIME | ||
#define HARDFORK_CORE_343_TIME (fc::time_point_sec( 1600000000 )) | ||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// bitshares-core issue #453 Fix "Multiple limit order and call order matching issue" | ||
#ifndef HARDFORK_CORE_453_TIME | ||
#define HARDFORK_CORE_453_TIME (fc::time_point_sec( 1600000000 )) | ||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// bitshares-core issue #606 Fix "Undercollateralized short positions should be called regardless of asks" | ||
#ifndef HARDFORK_CORE_606_TIME | ||
#define HARDFORK_CORE_606_TIME (fc::time_point_sec( 1600000000 )) | ||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// bitshares-core issue #625 Fix "Potential erratic order matching issue involving margin call orders" | ||
#ifndef HARDFORK_CORE_625_TIME | ||
#define HARDFORK_CORE_625_TIME (fc::time_point_sec( 1600000000 )) | ||
#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
Oops, something went wrong.