From afb97405a9c4012fb85ba5b40d692260bf3ca028 Mon Sep 17 00:00:00 2001 From: Hugo Trentesaux <hugo@trentesaux.fr> Date: Sun, 19 Feb 2023 20:17:04 +0100 Subject: [PATCH] fix renaming RuntimeCall --- end2end-tests/tests/common/balances.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/end2end-tests/tests/common/balances.rs b/end2end-tests/tests/common/balances.rs index 8149199de..47be32477 100644 --- a/end2end-tests/tests/common/balances.rs +++ b/end2end-tests/tests/common/balances.rs @@ -28,7 +28,7 @@ pub async fn set_balance(client: &Client, who: AccountKeyring, amount: u64) -> R .create_signed( &gdev::tx() .sudo() - .sudo(gdev::runtime_types::gdev_runtime::Call::Balances( + .sudo(gdev::runtime_types::gdev_runtime::RuntimeCall::Balances( pallet_balances::pallet::Call::set_balance { who: MultiAddress::Id(who.to_account_id()), new_free: amount, -- GitLab