mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 05:51:02 +00:00
b048be06fe
* WIP * Dry run cmd working * Monitor cmd works * Configure balance with parameter type * Comments * cleannnn * Add balancing to PhragMMS * Move OffchainRanomBalancing to common * DRY mine_unchecked over config.solver * FMT * Apply suggestions from code review Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Improve docs for any_runtime_unit! * Some cleanup * fmt * Correct capitilaztion * Improve version mismatch log * Revert "Improve version mismatch log" This reverts commit 57570403f654f1efa4307956cda2de6f0c64f70a. * Apply suggestions from code review Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Remove Balancing struct and use Balancing Parameter type instead * update Substrate Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: parity-processbot <>
55 lines
2.5 KiB
Rust
55 lines
2.5 KiB
Rust
// Copyright 2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! The emergency-solution command.
|
|
|
|
use crate::{prelude::*, Error, SharedConfig};
|
|
use codec::Encode;
|
|
use frame_election_provider_support::SequentialPhragmen;
|
|
use std::io::Write;
|
|
|
|
macro_rules! emergency_solution_cmd_for { ($runtime:ident) => { paste::paste! {
|
|
/// Execute the emergency-solution command.
|
|
pub(crate) async fn [<emergency_solution_cmd_ $runtime>](
|
|
shared: SharedConfig,
|
|
) -> Result<(), Error<$crate::[<$runtime _runtime_exports>]::Runtime>> {
|
|
use $crate::[<$runtime _runtime_exports>]::*;
|
|
let mut ext = crate::create_election_ext::<Runtime, Block>(shared.uri.clone(), None, vec![]).await?;
|
|
ext.execute_with(|| {
|
|
assert!(EPM::Pallet::<Runtime>::current_phase().is_emergency());
|
|
// NOTE: this internally calls feasibility_check, but we just re-do it here as an easy way
|
|
// to get a `ReadySolution`.
|
|
let (raw_solution, _) =
|
|
<EPM::Pallet<Runtime>>::mine_solution::<SequentialPhragmen<AccountId, sp_runtime::Perbill>>()?;
|
|
log::info!(target: LOG_TARGET, "mined solution with {:?}", &raw_solution.score);
|
|
let ready_solution = EPM::Pallet::<Runtime>::feasibility_check(raw_solution, EPM::ElectionCompute::Signed)?;
|
|
let encoded_ready = ready_solution.encode();
|
|
let encoded_support = ready_solution.supports.encode();
|
|
let mut solution_file = std::fs::File::create("solution.bin")?;
|
|
let mut supports_file = std::fs::File::create("solution.supports.bin")?;
|
|
solution_file.write_all(&encoded_ready)?;
|
|
supports_file.write_all(&encoded_support)?;
|
|
log::info!(target: LOG_TARGET, "ReadySolution: size {:?} / score = {:?}", encoded_ready.len(), ready_solution.score);
|
|
log::trace!(target: LOG_TARGET, "Supports: {}", sp_core::hexdisplay::HexDisplay::from(&encoded_support));
|
|
Ok(())
|
|
})
|
|
}
|
|
}}}
|
|
|
|
emergency_solution_cmd_for!(polkadot);
|
|
emergency_solution_cmd_for!(kusama);
|
|
emergency_solution_cmd_for!(westend);
|