mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
BREAKING - Try-runtime: Use proper error types (#13993)
* Try-state: DispatchResult as return type * try_state for the rest of the pallets * pre_upgrade * post_upgrade * try_runtime_upgrade * fixes * bags-list fix * fix * update test * warning fix * ... * final fixes 🤞 * warning.. * frame-support * warnings * Update frame/staking/src/migrations.rs Co-authored-by: Liam Aharon <liam.aharon@hotmail.com> * fix * fix warning * nit fix * merge fixes * small fix * should be good now * missed these ones * introduce TryRuntimeError and TryRuntimeResult * fixes * fix * removed TryRuntimeResult & made some fixes * fix testsg * tests passing * unnecessary imports * Update frame/assets/src/migration.rs Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> --------- Co-authored-by: Liam Aharon <liam.aharon@hotmail.com> Co-authored-by: Keith Yeung <kungfukeith11@gmail.com>
This commit is contained in:
@@ -122,10 +122,10 @@
|
||||
//!
|
||||
//! ```ignore
|
||||
//! #[cfg(feature = "try-runtime")]
|
||||
//! fn pre_upgrade() -> Result<Vec<u8>, &'static str> {}
|
||||
//! fn pre_upgrade() -> Result<Vec<u8>, TryRuntimeError> {}
|
||||
//!
|
||||
//! #[cfg(feature = "try-runtime")]
|
||||
//! fn post_upgrade(state: Vec<u8>) -> Result<(), &'static str> {}
|
||||
//! fn post_upgrade(state: Vec<u8>) -> Result<(), TryRuntimeError> {}
|
||||
//! ```
|
||||
//!
|
||||
//! (The pallet macro syntax will support this simply as a part of `#[pallet::hooks]`).
|
||||
@@ -141,7 +141,7 @@
|
||||
//!
|
||||
//! ```ignore
|
||||
//! #[cfg(feature = "try-runtime")]
|
||||
//! fn try_state(_: BlockNumber) -> Result<(), &'static str> {}
|
||||
//! fn try_state(_: BlockNumber) -> Result<(), TryRuntimeError> {}
|
||||
//! ```
|
||||
//!
|
||||
//! which is called on numerous code paths in the try-runtime tool. These checks should ensure that
|
||||
|
||||
Reference in New Issue
Block a user