Skip to content

Commit 79b4863

Browse files
committed
Merge branch 'main' into private-evm-prep
2 parents 491dd42 + 21fdb9a commit 79b4863

File tree

150 files changed

+1249
-1452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+1249
-1452
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ members = [
88
"domains/runtime/*",
99
"domains/service",
1010
"domains/test/runtime/*",
11+
"domains/test/pallets/*",
1112
"domains/test/service",
1213
"shared/*",
1314
"test/subspace-test-client",

crates/pallet-domains/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pallet-domains"
33
version = "0.1.0"
44
authors = ["Subspace Labs <https://subspace.network>"]
55
edition = "2021"
6-
license = "Apache-2.0"
6+
license = "0BSD"
77
homepage = "https://subspace.network"
88
repository = "https://github.com/autonomys/subspace"
99
description = "Subspace domains pallet"

crates/pallet-domains/src/lib.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
// Copyright (C) 2021 Subspace Labs, Inc.
2-
// SPDX-License-Identifier: Apache-2.0
3-
4-
// Licensed under the Apache License, Version 2.0 (the "License");
5-
// you may not use this file except in compliance with the License.
6-
// You may obtain a copy of the License at
7-
//
8-
// http://www.apache.org/licenses/LICENSE-2.0
9-
//
10-
// Unless required by applicable law or agreed to in writing, software
11-
// distributed under the License is distributed on an "AS IS" BASIS,
12-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
// See the License for the specific language governing permissions and
14-
// limitations under the License.
15-
161
//! Pallet Domains
172
183
#![cfg_attr(not(feature = "std"), no_std)]

crates/pallet-rewards/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pallet-rewards"
33
version = "0.1.0"
44
authors = ["Nazar Mokrynskyi <[email protected]>"]
55
edition = "2021"
6-
license = "Apache-2.0"
6+
license = "0BSD"
77
homepage = "https://subspace.network"
88
repository = "https://github.com/autonomys/subspace"
99
description = "Pallet for issuing rewards to block producers"

crates/pallet-rewards/src/lib.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
// Copyright (C) 2021 Subspace Labs, Inc.
2-
// SPDX-License-Identifier: Apache-2.0
3-
4-
// Licensed under the Apache License, Version 2.0 (the "License");
5-
// you may not use this file except in compliance with the License.
6-
// You may obtain a copy of the License at
7-
//
8-
// http://www.apache.org/licenses/LICENSE-2.0
9-
//
10-
// Unless required by applicable law or agreed to in writing, software
11-
// distributed under the License is distributed on an "AS IS" BASIS,
12-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
// See the License for the specific language governing permissions and
14-
// limitations under the License.
15-
161
//! Pallet for issuing rewards to block producers.
172
183
#![cfg_attr(not(feature = "std"), no_std)]

crates/pallet-runtime-configs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pallet-runtime-configs"
33
version = "0.1.0"
44
authors = ["Liu-Cheng Xu <[email protected]>"]
55
edition = "2021"
6-
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
6+
license = "0BSD"
77
homepage = "https://subspace.network"
88
repository = "https://github.com/autonomys/subspace"
99
description = "Pallet for tweaking the runtime configs for multiple network"

crates/pallet-runtime-configs/src/lib.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
// Copyright (C) 2022 Subspace Labs, Inc.
2-
// SPDX-License-Identifier: Apache-2.0
3-
4-
// Licensed under the Apache License, Version 2.0 (the "License");
5-
// you may not use this file except in compliance with the License.
6-
// You may obtain a copy of the License at
7-
//
8-
// http://www.apache.org/licenses/LICENSE-2.0
9-
//
10-
// Unless required by applicable law or agreed to in writing, software
11-
// distributed under the License is distributed on an "AS IS" BASIS,
12-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
// See the License for the specific language governing permissions and
14-
// limitations under the License.
15-
161
//! Pallet for tweaking the runtime configs for multiple network.
172
183
#![cfg_attr(not(feature = "std"), no_std)]

crates/pallet-subspace-mmr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pallet-subspace-mmr"
33
homepage = "https://subspace.network"
44
repository = "https://github.com/autonomys/subspace"
55
description = "Primitives for Subspace MMR"
6-
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
6+
license = "0BSD"
77
version = "0.1.0"
88
authors = ["Subspace Labs <https://subspace.network>"]
99
edition = "2021"

crates/pallet-subspace-mmr/src/lib.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
// Copyright (C) 2022 Subspace Labs, Inc.
2-
// SPDX-License-Identifier: Apache-2.0
3-
4-
// Licensed under the Apache License, Version 2.0 (the "License");
5-
// you may not use this file except in compliance with the License.
6-
// You may obtain a copy of the License at
7-
//
8-
// http://www.apache.org/licenses/LICENSE-2.0
9-
//
10-
// Unless required by applicable law or agreed to in writing, software
11-
// distributed under the License is distributed on an "AS IS" BASIS,
12-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
// See the License for the specific language governing permissions and
14-
// limitations under the License.
15-
161
//! Pallet that provides necessary Leaf data for MMR.
172
183
#![cfg_attr(not(feature = "std"), no_std)]

0 commit comments

Comments
 (0)