-
Notifications
You must be signed in to change notification settings - Fork 191
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
Flag guard the dual quorum in disperser #389
Conversation
@0x0aa0 we may need a separate blob verification onchain for this.
|
The test should pass if you enable dual quorum for the integration test |
I don't really understand why we need this. I thought the point of putting the required quorums onto the chain was to make this automatic. When we're ready for the dual quorum, wouldn't we just make the contract upgrade then? |
The point is not to trick the test. The different path should also be tested. |
It's about which way is easier, and it look flipping flags is easier than contract |
I see. One thing to note is that any rollup integrations will likely not function with |
Yep, when this flag is off (set to false), the rollup is only partially function (i.e. can confirm batch, but cannot verify blobs), until this flag is enabled. cc @0x0aa0 |
I think @0x0aa0 is making an alternative mock rollup and that will be ready a bit later. So for this PR, I'll just enable it in inabox to unbreak the test and move forward. |
…agrequiredquorum
…agrequiredquorum
Why are these changes needed?
Use flag guard the dual quorum feature in offchain system, so it can be rolled out in a controlled way.
Checks