-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add changelog, bump ConsensusProtocol
- Loading branch information
Showing
4 changed files
with
20 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
send and check expected epoch number during transaction execution | ||
|
||
Stress tests revealed some race conditions during transaction execution when | ||
there is an epoch transition. Runtime client now sends `expectedEpochNumber` | ||
parameter in `SubmitTx` call. The transaction scheduler checks whether the | ||
expected epoch matches its local one. Additionally, if state transition occurs | ||
during transaction execution, Executor and Merge committee correctly abort the | ||
transaction. |
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,9 @@ | ||
replace Roothash, Scheduler and Registry fields with Consensus accessors | ||
|
||
ConsensusAPI.Backend contains accessors for RootHash, Scheduler, and Registry. | ||
Use those instead of direct references. The following structs were affected: | ||
- Node in cmd/node/node.go, | ||
- Node in common/commmittee/node.go, | ||
- Worker in common/worker.go, | ||
- clientCommon in runtime/client/client.go, | ||
- Group in worker/common/committee/group.go. |
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,2 @@ | ||
e2e/multiple-runtimes: enable `EpochtimeMock`, add `numComputeWorkers` | ||
parameter |
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