Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ members = [
"runtime/parachains",
"runtime/polkadot",
"runtime/kusama",
"runtime/rococo",
"runtime/rococo-v1",
"runtime/westend",
"runtime/test-runtime",
"runtime/test-runtime/client",
Expand Down
2 changes: 1 addition & 1 deletion runtime/rococo/Cargo.toml → runtime/rococo-v1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "rococo-runtime"
name = "rococo-v1-runtime"
version = "0.8.19"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions runtime/rococo/src/lib.rs → runtime/rococo-v1/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.

//! The Rococo runtime.
//! The Rococo runtime for v1 parachains.

#![cfg_attr(not(feature = "std"), no_std)]
// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.
Expand Down Expand Up @@ -382,8 +382,8 @@ impl Filter<Call> for BaseFilter {

/// Runtime version (Rococo).
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("rococo"),
impl_name: create_runtime_str!("parity-rococo"),
spec_name: create_runtime_str!("rococo-v1"),
impl_name: create_runtime_str!("parity-rococo-v1"),
authoring_version: 0,
spec_version: 1,
impl_version: 0,
Expand Down