Skip to content

Commit 0e5e33e

Browse files
committed
update network name
1 parent 028fc0e commit 0e5e33e

File tree

4 files changed

+99
-99
lines changed

4 files changed

+99
-99
lines changed

resources/turbulence-dist.json

Lines changed: 92 additions & 92 deletions
Large diffs are not rendered by default.

resources/turbulence.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Laminar Turbulence TC1",
3-
"id": "turbulence1",
2+
"name": "Laminar Turbulence TC2",
3+
"id": "turbulence2",
44
"chainType": "Live",
55
"bootNodes": [
66
"/dns4/testnet-bootnode-1.laminar-chain.laminar.one/tcp/30333/p2p/12D3KooWNCe9dEpPhswckrX5ZHhdtZ3r5sg6CcgKfgyhw3seuwtB"
@@ -11,7 +11,7 @@
1111
0
1212
]
1313
],
14-
"protocolId": "turbulence1",
14+
"protocolId": "turbulence2",
1515
"properties": {
1616
"tokenDecimals": 18,
1717
"tokenSymbol": "LAMI"

scripts/update-turbulence.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
set -e
44

5-
cargo clean
5+
# cargo clean
66
WASM_BUILD_TYPE=release cargo run -- build-spec --chain turbulence-latest > ./resources/turbulence.json
77
WASM_BUILD_TYPE=release cargo run -- build-spec --chain ./resources/turbulence.json --raw > ./resources/turbulence-dist.json

service/src/chain_spec.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ pub fn latest_turbulence_testnet_config() -> Result<DevChainSpec, String> {
174174
let wasm_binary = WASM_BINARY.ok_or_else(|| "Development wasm binary not available".to_string())?;
175175

176176
Ok(DevChainSpec::from_genesis(
177-
"Laminar Turbulence TC1",
178-
"turbulence1",
177+
"Laminar Turbulence TC2",
178+
"turbulence2",
179179
ChainType::Live,
180180
// SECRET="..."
181181
// ./target/debug/subkey inspect "$SECRET//laminar//root"
@@ -234,7 +234,7 @@ pub fn latest_turbulence_testnet_config() -> Result<DevChainSpec, String> {
234234
Some(TelemetryEndpoints::new(vec![(STAGING_TELEMETRY_URL.to_string(), 0)])
235235
.expect("Staging telemetry url is valid; qed")),
236236
// Protocol ID
237-
Some("turbulence1"),
237+
Some("turbulence2"),
238238
// Properties
239239
Some(properties),
240240
// Extensions

0 commit comments

Comments
 (0)