Skip to content

Commit 6b27418

Browse files
authored
Merge pull request #3670 from autonomys/update_domain_bootnodes
Update domain bootstrap nodes on mainnet
2 parents 6b1dfbd + 2140911 commit 6b27418

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/pallet-domains/src/staking.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ pub(crate) fn do_nominate_operator<T: Config>(
579579
Error::OperatorNotRegistered
580580
);
581581

582-
// If the this is the first staking request of this operator `note_pending_staking_operation` for it
582+
// If this is the first staking request of this operator `note_pending_staking_operation` for it
583583
if operator.deposits_in_epoch.is_zero() && operator.withdrawals_in_epoch.is_zero() {
584584
note_pending_staking_operation::<T>(operator.current_domain_id)?;
585585
}
@@ -748,7 +748,7 @@ pub(crate) fn do_withdraw_stake<T: Config>(
748748
Error::OperatorNotRegistered
749749
);
750750

751-
// If the this is the first staking request of this operator `note_pending_staking_operation` for it
751+
// If this is the first staking request of this operator `note_pending_staking_operation` for it
752752
if operator.deposits_in_epoch.is_zero() && operator.withdrawals_in_epoch.is_zero() {
753753
note_pending_staking_operation::<T>(operator.current_domain_id)?;
754754
}

crates/sc-subspace-chain-specs/res/chain-spec-raw-mainnet.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@
1818
],
1919
"protocolId": "autonomys-mainnet",
2020
"properties": {
21-
"domainsBootstrapNodes": {},
21+
"domainsBootstrapNodes": {
22+
"0": [
23+
"/dns/bootstrap-0.auto-evm.mainnet.autonomys.xyz/tcp/30334/p2p/12D3KooWGiL62xRp7jcSUVU7JBEQXRdEGEDhkahqsfiAWG9z5G9x",
24+
"/dns/bootstrap-1.auto-evm.mainnet.autonomys.xyz/tcp/30334/p2p/12D3KooWH1svwqdY3JpidtNSJrASGkpR3a9wvAM2N4dRUiBcw6eU"
25+
]
26+
},
2227
"dsnBootstrapNodes": [
2328
"/dns/bootstrap-0.mainnet.subspace.foundation/tcp/30533/p2p/12D3KooWDAgkTJCxgRQZfC6fgm2L4jmnz2CfJR2bjjZPDfG6csnG",
2429
"/dns/bootstrap-0.mainnet.subspace.network/tcp/30533/p2p/12D3KooWPP8rmuVCeLmbhEwr3caeLii57eRBcJZQvXFVsxwTKX1K",

crates/subspace-bootstrap-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subspace-bootstrap-node"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = [
55
"Nazar Mokrynskyi <[email protected]>",
66
"Shamil Gadelshin <[email protected]>"

crates/subspace-farmer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "subspace-farmer"
33
description = "Farmer for the Subspace Network Blockchain"
44
license = "0BSD"
5-
version = "0.1.1"
5+
version = "0.1.2"
66
authors = ["Nazar Mokrynskyi <[email protected]>"]
77
edition.workspace = true
88
include = [

crates/subspace-gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subspace-gateway"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = [
55
66
"Shamil Gadelshin <[email protected]>"

crates/subspace-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subspace-node"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Subspace Labs <https://subspace.network>"]
55
description = "A Subspace Network Blockchain node."
66
edition.workspace = true

0 commit comments

Comments
 (0)