-
Notifications
You must be signed in to change notification settings - Fork 50
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
[Cadence 1.0] Add ProtocolStateVersionUpgrade
service event
#419
Closed
jordanschalm
wants to merge
11
commits into
stable-cadence
from
jordan/stable-cadence/5351-proto-state-upgrade-event
Closed
[Cadence 1.0] Add ProtocolStateVersionUpgrade
service event
#419
jordanschalm
wants to merge
11
commits into
stable-cadence
from
jordan/stable-cadence/5351-proto-state-upgrade-event
Conversation
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
accepting broken assets.go, will regenerate after cherry-pick is complete
broken assets.go
This was referenced May 2, 2024
turbolent
reviewed
May 3, 2024
Previously service events could only be emitted in the system chunk. With onflow/flow-go#5828, we can directly emit them in governance transactions.
2 tasks
…tate-upgrade-event
jordanschalm
added a commit
to onflow/flow-go
that referenced
this pull request
May 7, 2024
jordanschalm
changed the base branch from
stable-cadence
to
feature/efm-recovery
October 28, 2024 15:57
jordanschalm
changed the base branch from
feature/efm-recovery
to
stable-cadence
October 28, 2024 15:57
2 tasks
Closing in favour of #464 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR adds a minimal version of a service event to upgrade the protocol state version (see also onflow/flow-go#5428). This is a Cadence 1.0 compatible port of #411.
There is an integration test validating the new service event is processed in onflow/flow-go#5477.
Context
The plan is to deploy this changes alongside EFM Recovery (see branch
Outstanding TODOs
TestProtocolVersionUpgrade
integration test inflow-go
before merging.For now, I have added this service event to the
NodeVersionBeacon
contract, which has some benefits and drawbacks:ProtocolStateVersionUpgrade
does something similar to the existing Version Beacon, so it makes sense for their logic to be togetherProtocolStateVersionUpgrade
cleanly difficult