-
Notifications
You must be signed in to change notification settings - Fork 129
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
Ws-port argument has been repalced with rpc-port #2140
Conversation
uff, sorry for that, I knew that I forgot something, to check dockers yesterday :( |
It's fine :) Rialto<>Millau exist to be broken and detect such changes |
@@ -502,8 +502,8 @@ pub async fn start_node( | |||
keystore, | |||
force_authoring, | |||
slot_duration, | |||
// We got around 500ms for proposing | |||
block_proposal_slot_portion: SlotProportion::new(1f32 / 24f32), | |||
// We got around 1000ms for proposing |
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 has caused problems for me - parachain was unable to produce any blocks within 500ms
, so I've increased it to 1s
.
@@ -9,68 +9,74 @@ services: | |||
entrypoint: > | |||
/home/user/rialto-parachain-collator | |||
--alice | |||
--node-key=80cf382988364291a7968ae7825c01f68c50d679796a8983237d07fe0ccf363b |
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 were some recent changes in networking && I guess our parachain nodes can't connect to each other because of that => I've added stuff similar to what we have in Rialto and Millau
* Skip verification on state import * Actually use existing variables * Merge checks
* ws-port argument has been repalced with rpc-port * fixed paras pallet weight and expose unsigned validation * add bootnodes to RialtoParachain collators * another bump + increase block proposal time * revert RUST_LOG=trace for test network nodes
* ws-port argument has been repalced with rpc-port * fixed paras pallet weight and expose unsigned validation * add bootnodes to RialtoParachain collators * another bump + increase block proposal time * revert RUST_LOG=trace for test network nodes
Follow up for #2134 and #2138
This PR:
ws-port
argument has been removed;