From 5ecb3ac9aa965519f7d7bcb8d891cada265b70e9 Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 12 Dec 2023 11:53:23 +1300 Subject: [PATCH] Update latest mock file --- pallets/spp/src/mock.rs | 6 ++---- runtime/metaverse/src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pallets/spp/src/mock.rs b/pallets/spp/src/mock.rs index ae130472..d5a05cb2 100644 --- a/pallets/spp/src/mock.rs +++ b/pallets/spp/src/mock.rs @@ -197,9 +197,7 @@ impl Config for Runtime { type Currency = Balances; type WeightInfo = (); type MinimumStake = MinimumStake; - type RewardPaymentDelay = RewardPaymentDelay; type NetworkFee = NetworkFee; - type BlockNumberToBalance = ConvertInto; type StorageDepositFee = StorageDepositFee; type MultiCurrency = Currencies; type PoolAccount = PoolAccountPalletId; @@ -274,8 +272,8 @@ impl ExtBuilder { pub fn ksm_setup_for_alice_and_bob(self) -> Self { self.balances(vec![ - (ALICE, FungibleTokenId::NativeToken(1), 20000), //KSM - (BOB, FungibleTokenId::NativeToken(1), 20000), //KSM + (ALICE, FungibleTokenId::NativeToken(1), 200000000000), //KSM + (BOB, FungibleTokenId::NativeToken(1), 200000000000), //KSM ]) } } diff --git a/runtime/metaverse/src/lib.rs b/runtime/metaverse/src/lib.rs index e21e6ee0..a0b61b2f 100644 --- a/runtime/metaverse/src/lib.rs +++ b/runtime/metaverse/src/lib.rs @@ -182,7 +182,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 96, + spec_version: 98, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,