Skip to content

Commit

Permalink
fix #65
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Mar 9, 2022
1 parent 183484a commit 5cf7d71
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
5 changes: 2 additions & 3 deletions polkadot-launch/launch-rococo-local-with-shell.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"relaychain": {
"bin": "../../../bin/polkadot-0.9.13",
"bin": "../../../bin/polkadot-0.9.17",
"chain": "rococo-local",
"nodes": [
{
Expand All @@ -24,7 +24,6 @@
{
"bin": "./../target/release/integritee-collator",
"chain": "shell-rococo-local-dev",
"balance": "10_000_000__000_000_000_000",
"nodes": [
{
"wsPort": 9944,
Expand All @@ -34,7 +33,7 @@
},
{
"wsPort": 9945,
"port": 31200,
"port": 31201,
"name": "eve",
"flags": ["--", "--execution=wasm"]
}
Expand Down
27 changes: 10 additions & 17 deletions polkadot-parachains/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,14 @@ impl IntegriteeKeys {
vec![
public_from_ss58::<sr25519::Public>("5GZJjbPPD9u6NDgK1ApYmbyGs7EBX4HeEz2y2CD38YJxjvQH")
.into(),
/*
public_from_ss58::<sr25519::Public>("5CcSd1GZus6Jw7rP47LLqMMmtr2KeXCH6W11ZKk1LbCQ9dPY").into(),
public_from_ss58::<sr25519::Public>("5FsECrDjBXrh5hXmN4PhQfNPbjYYwwW7edu2UQ8G5LR1JFuH").into(),
public_from_ss58::<sr25519::Public>("5HBdSEnswkqm6eoHzzX5PCeKoC15CCy88vARrT8XMaRRuyaE").into(),
public_from_ss58::<sr25519::Public>("5GGxVLYTXS7JZAwVzisdXbsugHSD6gtDb3AT3MVzih9jTLQT").into(),
*/
public_from_ss58::<sr25519::Public>("5CcSd1GZus6Jw7rP47LLqMMmtr2KeXCH6W11ZKk1LbCQ9dPY")
.into(),
public_from_ss58::<sr25519::Public>("5FsECrDjBXrh5hXmN4PhQfNPbjYYwwW7edu2UQ8G5LR1JFuH")
.into(),
public_from_ss58::<sr25519::Public>("5HBdSEnswkqm6eoHzzX5PCeKoC15CCy88vARrT8XMaRRuyaE")
.into(),
public_from_ss58::<sr25519::Public>("5GGxVLYTXS7JZAwVzisdXbsugHSD6gtDb3AT3MVzih9jTLQT")
.into(),
]
}
}
Expand Down Expand Up @@ -196,11 +197,7 @@ fn integritee_genesis_config(
.to_vec(),
},
balances: parachain_runtime::BalancesConfig {
balances: endowed_accounts
.iter()
.cloned()
.map(|k| (k, 10_000_000__000_000_000_000))
.collect(),
balances: endowed_accounts.iter().cloned().map(|k| (k, 10__000_000_000_000)).collect(),
},
sudo: parachain_runtime::SudoConfig { key: Some(root_key) },
vesting: Default::default(),
Expand All @@ -224,11 +221,7 @@ fn shell_genesis_config(
.to_vec(),
},
balances: shell_runtime::BalancesConfig {
balances: endowed_accounts
.iter()
.cloned()
.map(|k| (k, 10_000_000__000_000_000_000))
.collect(),
balances: endowed_accounts.iter().cloned().map(|k| (k, 10__000_000_000_000)).collect(),
},
sudo: shell_runtime::SudoConfig { key: Some(root_key) },
vesting: Default::default(),
Expand Down

0 comments on commit 5cf7d71

Please sign in to comment.