-
Notifications
You must be signed in to change notification settings - Fork 217
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
Add genesis.yaml and instructions for how to use it #305
Conversation
Btw, I'm not sure if this output is good
|
have you tried to run with Out of the blue, I think it should be ok as jormungandr is still wip so probably its not complete implementation yet. The error seems to come from https://github.com/input-output-hk/jormungandr/blob/438179d5d769ea0e4c02613f703f088111e880a9/src/network/mod.rs#L80 . Seems like that will be the case if Nicolas Di Prima:
Ante:
Nicolas Di Prima:
In this stage of development it is expected to see such output |
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.
looks good so far. Some minor comments to possibly address
@@ -0,0 +1,24 @@ | |||
You will need `jcli` and `jormungandr` from https://github.com/input-output-hk/jormungand://github.com/input-output-hk/jormungandr |
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 is a broken link, you pasted it twice concatinated
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.
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.
Fixed.
# of the blockchain that cannot be changed once the blockchain | ||
# is started. | ||
blockchain_configuration: | ||
peer_2_peer: 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.
I guess in this stage we won't have peer_2_peer
enabled, but only standalone node
I am still not sure in which state rust node is atm but according to conversation with Nicolas #305 (comment) I would assume we should either:
- set
peer_2_peer
to false and run as a standalone node - set
peer_2_peer
to true and connect to the network - but according to what Nicolas said this requires some node configuration to be changed
Also - don't take my word for it as I am just starting to use the node
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.
Hm
# A list of Ed25519 Extended PublicKey that represents the | ||
# BFT leaders encoded as bech32. The order in the list matters. | ||
consensus_leader_ids: | ||
- ed25519e_pk1xznffwqdhw3drw9yk4t99vpajcc4epq5kp205um5gkkz625xt3mqn4z3mx |
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.
I wasn't aware we have to setup initial leader list in bft - hm
coefficient: 0 | ||
certificate: 0 | ||
|
||
kes_update_speed: 16 |
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.
kes
stands for?
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.
🤷♂️
b23cc60
to
ffed9ce
Compare
Issue Number
Overview
genesis.yaml
which we need to re-generate the genesis block (which we already store in the repo)jcli
Comments
Better than nothing I believe.