-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
chore: support RPC consistency mechanism #3741
base: st/chore/[email protected]
Are you sure you want to change the base?
chore: support RPC consistency mechanism #3741
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -2,4 +2,4 @@ | |||
/// <reference types="next/image-types/global" /> | |||
|
|||
// NOTE: This file should not be edited | |||
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. | |||
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. |
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.
This got changed automatically.
@@ -224,6 +225,7 @@ export const launchNode = async ({ | |||
['--port', portToUse], | |||
useInMemoryDb ? ['--db-type', 'in-memory'] : ['--db-path', tempDir], | |||
['--min-gas-price', minGasPrice], | |||
['--starting-gas-price', startingGasPrice], |
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.
Some tests against the latest master
of fuel-core
were failing until I added this.
Note
Merges into #3590 because that one contains the fixes to breaking changes between 0.40 and 0.41
Release notes
In this release, we:
required_fuel_block_height
to fix RPC consistency issuesSummary
Checklist