From d93857fdb8ffc157774e4fb6fdfcf3e839339d5d Mon Sep 17 00:00:00 2001 From: NZT48 Date: Fri, 1 Sep 2023 08:14:19 +0000 Subject: [PATCH] Fix chain Id --- 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 8183e37..895c5df 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -784,7 +784,7 @@ impl> FindAuthor for FindAuthorTruncated { } parameter_types! { - pub const ChainId: u64 = 20430; + pub const ChainId: u64 = 2043; pub BlockGasLimit: U256 = U256::from(NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT.ref_time() / WEIGHT_PER_GAS); pub PrecompilesValue: FrontierPrecompiles = FrontierPrecompiles::<_>::new(); pub WeightPerGas: Weight = Weight::from_parts(WEIGHT_PER_GAS, 0);