-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Develop -> Master PR #1509
Merged
Develop -> Master PR #1509
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
The batch submitter is normally ran without running the call to `appendQueueBatch`. The contracts have `appendQueueBatch` disabled currently. This means that calling `appendQueueBatch` will result in a revert. This PR removes the config option that is responsible for turning of the call to `appendQueueBatch` so it is more likely to "just work".
Bumps [mixme](https://github.com/adaltas/node-mixme) from 0.5.1 to 0.5.2. - [Release notes](https://github.com/adaltas/node-mixme/releases) - [Changelog](https://github.com/adaltas/node-mixme/blob/master/CHANGELOG.md) - [Commits](adaltas/node-mixme@v0.5.1...v0.5.2) --- updated-dependencies: - dependency-name: mixme dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
…rn/mixme-0.5.2 chore(deps): bump mixme from 0.5.1 to 0.5.2
Adds new config options to the watcher to allow it to upgrade in a non breaking way. New config options include setting a global `pollForPending` and `blocksToFetch`. It is also possible to specify the number of blocks to fetch on each `Layer`. The event ids are precomputed and held as globals instead of computed on the fly each time.
…ocksToFetch Watcher: l1 vs l2 blocksToFetch
docs: point to new specs repository
…uebatch batch-submitter: remove call to `appendQueueBatch`
[added] coverage for getMerkleTreeProof
…ate-dump-process Remove L1 contracts from L2 state dump process
Allow the DTL to sync from multiple web3 backends using the `ethers.providers.FallbackProvider`. Multiple URLs can be passed through as a comma delimited string to configure multiple providers. A helper function is added to `core-utils` to allow easy configuration between services. This PR only introduces the usage of the fallback provider into the DTL. In the future, it should be added to other services that query L1 as well.
feat: use FallbackProvider in the DTL
Fix `toExecutionManagerRun` in cases where `asOvmMessage` isn't applied. Note that tracing currently does not work for optimistic ethereum.
l2geth: to execution manager run
🦋 Changeset detectedLatest commit: a7c7cd6 The changes in this PR will be included in the next version bump. This PR includes changesets to release 7 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
github-actions
bot
added
2-reviewers
A-op-batcher
Area: op-batcher
A-pkg-core-utils
Area: packages/core-utils
A-cannon
Area: cannon
labels
Oct 1, 2021
fix: update contracts release to patch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Description
Develop -> Master