-
Notifications
You must be signed in to change notification settings - Fork 796
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
common: Relocate geth genesis, state parsers to common, blockchain respectively #2300
Conversation
Codecov Report
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more. |
packages/common/README.md
Outdated
}) | ||
// You either have genesis block hash or calculate it from using the geth state via `blockchain` module | ||
// const genesisBlockHash = ... | ||
common.setForkHashes(genesisBlockHash) |
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.
Hi Gajinder,
this looks already pretty great all over the place! 😄
Just for context/understanding: are fork hashes generally not included in genesis.json
files? 🤔 Or is this just an "emergency mode" addition in case they are not included but normally they are?
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.
hey @holgerd77 , thanks ❤️ the geth genesis doesn't has any forkHashes, so yes this would need to be set explicitly for custom chains based out of geth configs, and also can work as the fallback
as you mentioned 👍
Can you add at least one test in Also just to mention: when I suggested this I thought about adding a new static constructor like Just some thoughts, if you also think this is a good idea to streamline things feel free to additionally add such a constructor if this doesn't collide with option types or the like. If you don't then just leave for now. |
sounds good @holgerd77 🙂 will update 👍 and add some tests as well |
added a test for kiln genesis's block root match (sourced from an old geth build), seems to be not matching 🤔 , currently debugging for fix |
@@ -36,7 +36,7 @@ export async function genesisStateRoot(genesisState: GenesisState) { | |||
account.codeHash = Buffer.from(keccak256(toBuffer(code))) | |||
} | |||
if (storage !== undefined) { | |||
const storageTrie = new Trie() | |||
const storageTrie = new Trie({ useKeyHashing: true }) |
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.
Oh. The v6 final release clean-up bugs keep trickling in (still on a very modest level though).
Great find! 🙂
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.
yea it took quite a digging to find this one 😅
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 following up the call-path here,so this is actually not such a "mild" bug being triggered directly in Blockchain.create()
in certain circumstances, right? 🤔 "Only" in genesis storage scenarios, but anyhow. Guess some bugfix releases are really getting closer to be realized/done at some point.
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.
yes in genesis storage scenarios only! thats why i digged around and used kiln genesis (since i wanted to incorporate a little complex genesis and luckily found this bug) and corresponding genesis block ( had to find an old geth build to get it 😅 )
@holgerd77 PR should be good to merge 🙏 |
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.
Nice, looks really really great, we have been waiting for such a functionality/constructor for quite some time, @ryanio would/will love this as well 🙂, quite some pre-work being done to enable this and this will really ease (expand on) use cases for the other libraries (easily instantiate a Block
from a custom chain where you only have a genesis.json file and the block RPC e.g., these kind of things).
So, great! Will merge.
'kiln genesis hash matches' | ||
) | ||
}) | ||
}) |
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.
Nice tests. 👍
// post calculating it via `blockchain`) | ||
common.setForkHashes(genesisHash) | ||
``` | ||
|
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.
Nice. 👍
|
||
tape('[Utils/Parse]', (t) => { | ||
t.test('should parse geth params file', async (t) => { | ||
const json = require(`../../client/test/testdata/geth-genesis/testnet.json`) |
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.
Hmm. Won't make it a blocker here but this is a bit dangerous.
So if someone reorganizes test data in client, this will (at least locally) remain unnoticed when someone is working "client only" and running the client tests and the like. Will break on CI then so somewhat ok, but nevertheless we should generally avoid and in doubt rather take over.
At some point we might also want to consolidate testdata a bit more (or at least discuss), and do a dedicated directory testdata
on packages
folder level or the like and in turn keep the test data a bit more curated and high quality level. Just some thoughts for now though.
Relocate geth genesis, state parsers to common, blockchain respectively
Partially addresses #1708 as
parseGethGenesisState
can set these objectsNonces still need to be checked
Note (from @holgerd77): this also fixes a severe bug in the
Blockchain.create()
method.