-
Notifications
You must be signed in to change notification settings - Fork 0
Upgrade to v3.9.8 #10
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,33 +1,5 @@ | ||
| # Lines starting with '#' are comments. | ||
| # Each line is a file pattern followed by one or more owners. | ||
| # These owners will be the default owners for everything in the repo. Unless a | ||
| # later match takes precedence, they will be requested for review when someone | ||
| # opens a pull request. | ||
|
|
||
| accounts/usbwallet/ @gballet | ||
| accounts/scwallet/ @gballet | ||
| accounts/abi/ @gballet @MariusVanDerWijden | ||
| beacon/engine/ @MariusVanDerWijden @lightclient @fjl | ||
| beacon/light/ @zsfelfoldi | ||
| beacon/merkle/ @zsfelfoldi | ||
| beacon/types/ @zsfelfoldi @fjl | ||
| beacon/params/ @zsfelfoldi @fjl | ||
| cmd/evm/ @MariusVanDerWijden @lightclient | ||
| core/state/ @rjl493456442 | ||
| crypto/ @gballet @jwasinger @fjl | ||
| core/ @rjl493456442 | ||
| eth/ @rjl493456442 | ||
| eth/catalyst/ @MariusVanDerWijden @lightclient @fjl @jwasinger | ||
| eth/tracers/ @s1na | ||
| ethclient/ @fjl | ||
| ethdb/ @rjl493456442 | ||
| event/ @fjl | ||
| trie/ @rjl493456442 @gballet | ||
| triedb/ @rjl493456442 | ||
| core/tracing/ @s1na | ||
| graphql/ @s1na | ||
| internal/ethapi/ @fjl @s1na @lightclient | ||
| internal/era/ @lightclient | ||
| miner/ @MariusVanDerWijden @fjl @rjl493456442 | ||
| node/ @fjl | ||
| p2p/ @fjl @zsfelfoldi | ||
| rlp/ @fjl | ||
| params/ @fjl @gballet @rjl493456442 @zsfelfoldi | ||
| rpc/ @fjl | ||
| * @ImJeremyHe @zacshowa @Sneh1999 @philippecamacho @jjeangal |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,9 @@ | ||||||
| package rawdb | ||||||
|
|
||||||
| func NewEspressoTableConfig(tables map[string]bool) map[string]freezerTableConfig { | ||||||
| result:= make(map[string]freezerTableConfig) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The map
Suggested change
References
|
||||||
| for key, value := range tables { | ||||||
| result[key] = freezerTableConfig{noSnappy: value, prunable: true} | ||||||
| } | ||||||
| return result | ||||||
| } | ||||||
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.
Just because I lack context; whats up with this?
I only ask because we encountered some weird error related to parsing some freezer table type on startup while deploying NodeOps yesterday.
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.
no custom change made in this PR
This is basically the same as this PR: #9
But for context on the code maybe @Sneh1999 can provide more info