Fix accumulated bugs

This commit is contained in:
Luke Parker
2023-11-06 18:12:53 -05:00
parent c9003874ad
commit b65ba17007
8 changed files with 10 additions and 140 deletions

View File

@@ -5,12 +5,11 @@ use serai_runtime::Block;
use sc_service::{PruningMode, PartialComponents};
use sc_cli::SubstrateCli;
use frame_benchmarking_cli::{ExtrinsicFactory, BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE};
use frame_benchmarking_cli::{BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE};
use crate::{
chain_spec,
cli::{Cli, Subcommand},
command_helper::{RemarkBuilder, inherent_benchmark_data},
service::{self, FullClient},
};
@@ -110,26 +109,9 @@ pub fn run() -> sc_cli::Result<()> {
cmd.run(config, client, backend.expose_db(), backend.expose_storage())
}
BenchmarkCmd::Overhead(cmd) => {
let client = service::new_partial(&config)?.client;
cmd.run(
config,
client.clone(),
inherent_benchmark_data()?,
vec![],
&RemarkBuilder::new(client),
)
}
BenchmarkCmd::Overhead(_) => Err("Overhead benchmarking isn't supported.".into()),
BenchmarkCmd::Extrinsic(cmd) => {
let client = service::new_partial(&config)?.client;
cmd.run(
client.clone(),
inherent_benchmark_data()?,
vec![],
&ExtrinsicFactory(vec![Box::new(RemarkBuilder::new(client))]),
)
}
BenchmarkCmd::Extrinsic(_) => Err("Extrinsic benchmarking isn't supported.".into()),
BenchmarkCmd::Machine(cmd) => cmd.run(&config, SUBSTRATE_REFERENCE_HARDWARE.clone()),
}),

View File

@@ -1,92 +0,0 @@
use std::sync::Arc;
use sp_core::{Encode, Pair};
use sp_keyring::Sr25519Keyring;
use sp_inherents::InherentData;
use sp_runtime::OpaqueExtrinsic;
use sc_cli::Result;
use sc_client_api::BlockBackend;
use serai_runtime::{
VERSION, BlockHashCount,
system::{self, Call as SystemCall},
transaction_payment, RuntimeCall, UncheckedExtrinsic, SignedPayload, Runtime,
};
use crate::service::FullClient;
pub struct RemarkBuilder {
client: Arc<FullClient>,
}
impl RemarkBuilder {
pub fn new(client: Arc<FullClient>) -> Self {
Self { client }
}
}
impl frame_benchmarking_cli::ExtrinsicBuilder for RemarkBuilder {
fn pallet(&self) -> &str {
"system"
}
fn extrinsic(&self) -> &str {
"remark"
}
fn build(&self, nonce: u32) -> std::result::Result<OpaqueExtrinsic, &'static str> {
Ok(OpaqueExtrinsic::from(create_benchmark_extrinsic(
self.client.as_ref(),
Sr25519Keyring::Bob.pair(),
SystemCall::remark { remark: vec![] }.into(),
nonce,
)))
}
}
pub fn create_benchmark_extrinsic(
client: &FullClient,
sender: sp_core::sr25519::Pair,
call: RuntimeCall,
nonce: u32,
) -> UncheckedExtrinsic {
let extra = (
system::CheckNonZeroSender::<Runtime>::new(),
system::CheckSpecVersion::<Runtime>::new(),
system::CheckTxVersion::<Runtime>::new(),
system::CheckGenesis::<Runtime>::new(),
system::CheckEra::<Runtime>::from(sp_runtime::generic::Era::mortal(
BlockHashCount::get().checked_next_power_of_two().map(|c| c / 2).unwrap_or(2),
client.chain_info().best_number,
)),
system::CheckNonce::<Runtime>::from(nonce),
system::CheckWeight::<Runtime>::new(),
transaction_payment::ChargeTransactionPayment::<Runtime>::from(0),
);
UncheckedExtrinsic::new_signed(
call.clone(),
sender.public().into(),
SignedPayload::from_raw(
call,
extra.clone(),
(
(),
VERSION.spec_version,
VERSION.transaction_version,
client.block_hash(0).ok().flatten().unwrap(),
client.chain_info().best_hash,
(),
(),
(),
),
)
.using_encoded(|e| sender.sign(e)),
extra,
)
}
pub fn inherent_benchmark_data() -> Result<InherentData> {
Ok(InherentData::new())
}

View File

@@ -1,7 +1,6 @@
mod chain_spec;
mod service;
mod command_helper;
mod command;
mod rpc;