Fix latest substrate compatibility check (#653)

* Fix weights refs

* Update Runtime Call name
This commit is contained in:
Andrew Jones
2022-09-15 10:10:47 +01:00
committed by GitHub
parent e64ab19a18
commit 359c3dae41
2 changed files with 3 additions and 3 deletions
@@ -8,7 +8,7 @@ use crate::{
node_runtime::{
self,
contracts::events,
runtime_types::frame_support::weights::weight_v2::Weight,
runtime_types::sp_weights::weight_v2::Weight,
system,
},
test_context,
+2 -2
View File
@@ -7,7 +7,7 @@ use crate::{
self,
runtime_types::{
self,
frame_support::weights::weight_v2::Weight,
sp_weights::weight_v2::Weight,
},
sudo,
},
@@ -16,7 +16,7 @@ use crate::{
};
use sp_keyring::AccountKeyring;
type Call = runtime_types::kitchensink_runtime::Call;
type Call = runtime_types::kitchensink_runtime::RuntimeCall;
type BalancesCall = runtime_types::pallet_balances::pallet::Call;
#[tokio::test]