This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into prgn-remove-old-service-second-try
* master: Bump jsonrpc-core to v15 (#1737) Companion PR for #6215 (#1654) Companion PR for #7138 (WeightInfo for Scheduler) (#1734) Companion PR for Bounties #5715 (#1336)
- Loading branch information
Showing
17 changed files
with
693 additions
and
320 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
jsonrpc-core = "14.0.3" | ||
jsonrpc-core = "15.0.0" | ||
polkadot-primitives = { path = "../primitives" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (C) 2020 Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 2.0.0-rc6 | ||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
|
||
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; | ||
|
||
pub struct WeightInfo; | ||
impl pallet_scheduler::WeightInfo for WeightInfo { | ||
fn schedule(s: u32, ) -> Weight { | ||
(37_835_000 as Weight) | ||
.saturating_add((81_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(DbWeight::get().reads(1 as Weight)) | ||
.saturating_add(DbWeight::get().writes(1 as Weight)) | ||
} | ||
fn cancel(s: u32, ) -> Weight { | ||
(34_707_000 as Weight) | ||
.saturating_add((3_125_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(DbWeight::get().reads(1 as Weight)) | ||
.saturating_add(DbWeight::get().writes(2 as Weight)) | ||
} | ||
fn schedule_named(s: u32, ) -> Weight { | ||
(48_065_000 as Weight) | ||
.saturating_add((110_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(DbWeight::get().reads(2 as Weight)) | ||
.saturating_add(DbWeight::get().writes(2 as Weight)) | ||
} | ||
fn cancel_named(s: u32, ) -> Weight { | ||
(38_776_000 as Weight) | ||
.saturating_add((3_138_000 as Weight).saturating_mul(s as Weight)) | ||
.saturating_add(DbWeight::get().reads(2 as Weight)) | ||
.saturating_add(DbWeight::get().writes(2 as Weight)) | ||
} | ||
} |
Oops, something went wrong.