-
Notifications
You must be signed in to change notification settings - Fork 91
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
Can not work for AccountId20 network #1826
Comments
Is possible to not overwrite this file, and I can insert the keys manually through RPC. |
Yeah, im also having the same issues |
Hi @AurevoirXavier / @zianksm, thanks for the feedback. I think this could be solved in #1816, since this introduce a new config key Note: This require to be documented (@pepoviola) |
After adding
Let me check if there's any wrong on my side. This is the newly generated spec by zombienet:
But, originally I expected there are 3 collators. |
Thanks for the feedback @AurevoirXavier, can you send me the network definition file (toml/json) to reproduce it on my end? |
Is there a way to specify the session keys myself? We have our own staking(collator election) logic. Even this get fixed, the generated one wont work for us I think. |
https://github.com/darwinia-network/darwinia/blob/main/.maintain/zombienet.toml |
Hi @AurevoirXavier, sorry about the delay. I checked the [settings]
provider = "native"
[relaychain]
chain = "rococo-local"
default_args = ["--database=paritydb", "-lparachain=debug"]
default_command = "tmp/polkadot"
[[relaychain.nodes]]
name = "alice"
validator = true
[[relaychain.nodes]]
name = "bob"
validator = true
[[parachains]]
chain = "koi-genesis"
force_decorator = "generic-evm"
id = 2105
[[parachains.collators]]
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
command = "tmp/darwinia"
name = "C1"
rpc_port = 10000
[[parachains.collators]]
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
command = "tmp/darwinia"
name = "C2"
rpc_port = 10001
[[parachains.collators]]
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
command = "tmp/darwinia"
name = "C3"
rpc_port = 10002 Should works as expected, with 3 collators (and the keys in the session). Thanks!! and again sorry about the delay. |
I encountered the same error using the Zombienet-SDK.
Does it require any additional configuration or specifications? |
Hey @AlexD10S, does your parachain is evm based? Can you add this config to it force_decorator = "generic-evm" With this config should works in v1. Thanks! |
I'm also getting similar error:
Even with the Here is my config file:
Any pointers? |
Hi @ical10, [settings]
timeout = 1000
[relaychain]
default_command = "./binaries/polkadot"
chain = "rococo-local"
chain_spec_path = "./plain.json"
[[relaychain.nodes]]
name = "alice"
validator = true
[[relaychain.nodes]]
name = "bob"
validator = true
[[parachains]]
id = 2000
force_decorator = "generic-evm"
chain_spec_path = "../res/niskala/live/live.json"
[[parachains.collators]]
name = "mandala-collator-1"
command = "./binaries/mandala"
[[parachains.collators]]
name = "mandala-collator-2"
command = "./binaries/mandala" Closing now, please re-open if doesn't works and we can debug it. |
|
Issue Description
Our session module's key should be
AccountId
. But it injects someAccountId32
into it.Auto generated:
Expected:
Steps to reproduce the issue
Describe the results you received
Describe the results you expected
Run
Zombienet version
Any
Provider
Native
Provider version
Upstream Latest Release
Yes
Additional environment details
No response
Additional information
No response
Screenshots
No response
The text was updated successfully, but these errors were encountered: