-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: authority rotation integration tests #3909
Merged
Merged
Changes from 17 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
5aaa47a
Improved the current rotation test
syan095 053dd9c
Updated move_forward_blocks so it's more correct
syan095 6bf3526
Added 2 integration tests for when keygen and key handover fails
syan095 ecaf1a0
Merge remote-tracking branch 'origin/main' into test/authority-rotati…
syan095 26b04dd
Fixed integration tests
syan095 aa553df
Merge remote-tracking branch 'origin/main' into test/authority-rotati…
syan095 1d6d3d4
Fixed a bug where failed key handover cannot restart
syan095 dce1047
fix: use inherents and use correct execution order
dandanlen 9c56078
fix: hacky fix for the authorities tests
dandanlen 9733a90
WIP: Integration test's mock CFEs calls are put into a queue instead of
syan095 a872d75
Merge remote-tracking branch 'origin/main' into test/authority-rotati…
syan095 f88ff1c
Fixed broken build due to merge
syan095 9a619c5
Fixed authority rotation for integration test rig
syan095 4ed9c4d
Fixed all remaining integration tests
syan095 8cf6ccf
Minor typo changes
syan095 b84c3d7
Merge remote-tracking branch 'origin/main' into test/authority-rotati…
syan095 2a00639
fix: reset events
dandanlen 3ee6830
minor refactor
syan095 9dee0c9
Included integrity test to the test harness
syan095 9e9bea9
Merged from main.
syan095 78c63a6
Merged from main
syan095 8f1efa7
chore: more explicit error message in vault handover
dandanlen 0042cdd
fix: process contract events before block
dandanlen a2d138f
fix: import the runtime VaultRotator
dandanlen a7fdf43
Merge branch 'main' into test/authority-rotation-integration
dandanlen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should not have to call this explicity - it should happen when the account is funded.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update: I removed this and the extra funding call below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update 2: I reordered the processing of events - external (eth contract) events are now processed before the block, so we don't need 2 blocks to process the events.