From 7ddde5a36016ab46fbd54b29ee5bd48022b225cd Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 17 Aug 2023 11:34:47 +0200 Subject: [PATCH 1/5] Update runtime/src/lib.rs --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index a507f24f..ffe5abf5 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -338,7 +338,7 @@ impl pallet_sudo::Config for Runtime { parameter_types! { pub Prefix: &'static [u8] = b"My JUR address is "; pub const NativeCurrencyId: CurrencyId = NATIVE_CURRENCY_ID; - pub const EthAddress: EthereumAddress = EthereumAddress(hex!("37abc97DD3dA0b81fe635e35Ea1655A15FfF4d76")); + pub const EthAddress: EthereumAddress = EthereumAddress(hex!("D77229999a1ca62b5bfb2735BaC12069b3794c44")); } /// Configure the pallet-token-swap in pallets/token-swap. From 9e3a02272965199cc9534939d1c77024432a22b4 Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 17 Aug 2023 11:38:35 +0200 Subject: [PATCH 2/5] Update runtime/Cargo.toml --- runtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 1d48bafe..514f06f2 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jur-node-runtime" -version = "1.0.1" +version = "2.0.0" edition = "2021" license = "Unlicense" publish = false From 64e94ed4abb7370198a89062221c5e584cceb7d9 Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 17 Aug 2023 11:39:22 +0200 Subject: [PATCH 3/5] Update runtime/src/lib.rs --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index ffe5abf5..e3ab72bc 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -120,7 +120,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 111, + spec_version: 104, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, From 93869beb73a06a66b28eb54c8b51ee12690fda5e Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 17 Aug 2023 11:44:47 +0200 Subject: [PATCH 4/5] Update node/Cargo.toml --- node/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/Cargo.toml b/node/Cargo.toml index 61e7f4f6..8cdee854 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jur-node" -version = "1.0.1" +version = "2.0.0" edition = "2021" license = "Unlicense" publish = false From 8f66754123e9c455e4850fcb88341cbe83820eed Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 17 Aug 2023 11:50:44 +0200 Subject: [PATCH 5/5] fix local dependency --- node/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/Cargo.toml b/node/Cargo.toml index 8cdee854..65bda7eb 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -55,7 +55,7 @@ frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/parityte frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" } # Local Dependencies -jur-node-runtime = { version = "1.0.1", path = "../runtime" } +jur-node-runtime = { version = "2.0.0", path = "../runtime" } primitives = { package = 'jur-primitives', path = '../primitives' } # CLI-specific dependencies @@ -74,4 +74,4 @@ runtime-benchmarks = [ ] # Enable features that allow the runtime to be tried and debugged. Name might be subject to change # in the near future. -try-runtime = ["jur-node-runtime/try-runtime", "try-runtime-cli/try-runtime"] \ No newline at end of file +try-runtime = ["jur-node-runtime/try-runtime", "try-runtime-cli/try-runtime"]