mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 19:41:05 +00:00
Contracts Bump ApiVersion and add test (#3619)
ApiVersion should have been bumped with https://github.com/paritytech/polkadot-sdk/pull/3606 this does that and add a test so we don't forget to do that everytime
This commit is contained in:
@@ -222,10 +222,19 @@ pub struct Environment<T: Config> {
|
||||
pub struct ApiVersion(u16);
|
||||
impl Default for ApiVersion {
|
||||
fn default() -> Self {
|
||||
Self(1)
|
||||
Self(2)
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn api_version_is_up_to_date() {
|
||||
assert_eq!(
|
||||
109,
|
||||
crate::wasm::STABLE_API_COUNT,
|
||||
"Stable API count has changed. Bump the returned value of ApiVersion::default() and update the test."
|
||||
);
|
||||
}
|
||||
|
||||
#[frame_support::pallet]
|
||||
pub mod pallet {
|
||||
use super::*;
|
||||
|
||||
Reference in New Issue
Block a user