Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 1e8b7b3

Browse files
committed
rename OverarchingCall
1 parent a5c2ead commit 1e8b7b3

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

runtime/common/src/assigned_slots.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ mod tests {
582582
RuntimeCall: From<C>,
583583
{
584584
type Extrinsic = UncheckedExtrinsic;
585-
type OverarchingCall = RuntimeCall;
585+
type RuntimeCall = RuntimeCall;
586586
}
587587

588588
parameter_types! {

runtime/common/src/integration_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ where
9696
RuntimeCall: From<C>,
9797
{
9898
type Extrinsic = UncheckedExtrinsic;
99-
type OverarchingCall = RuntimeCall;
99+
type RuntimeCall = RuntimeCall;
100100
}
101101

102102
use crate::{auctions::Error as AuctionsError, crowdloan::Error as CrowdloanError};

runtime/common/src/paras_registrar.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ mod tests {
635635
RuntimeCall: From<C>,
636636
{
637637
type Extrinsic = UncheckedExtrinsic;
638-
type OverarchingCall = RuntimeCall;
638+
type RuntimeCall = RuntimeCall;
639639
}
640640

641641
const NORMAL_RATIO: Perbill = Perbill::from_percent(75);

runtime/kusama/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ where
817817
RuntimeCall: From<C>,
818818
{
819819
type Extrinsic = UncheckedExtrinsic;
820-
type OverarchingCall = RuntimeCall;
820+
type RuntimeCall = RuntimeCall;
821821
}
822822

823823
parameter_types! {

runtime/parachains/src/mock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ where
7676
RuntimeCall: From<C>,
7777
{
7878
type Extrinsic = UncheckedExtrinsic;
79-
type OverarchingCall = RuntimeCall;
79+
type RuntimeCall = RuntimeCall;
8080
}
8181

8282
parameter_types! {

runtime/polkadot/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ where
952952
RuntimeCall: From<C>,
953953
{
954954
type Extrinsic = UncheckedExtrinsic;
955-
type OverarchingCall = RuntimeCall;
955+
type RuntimeCall = RuntimeCall;
956956
}
957957

958958
parameter_types! {

runtime/rococo/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ where
742742
RuntimeCall: From<C>,
743743
{
744744
type Extrinsic = UncheckedExtrinsic;
745-
type OverarchingCall = RuntimeCall;
745+
type RuntimeCall = RuntimeCall;
746746
}
747747

748748
parameter_types! {

runtime/test-runtime/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ impl<C> frame_system::offchain::SendTransactionTypes<C> for Runtime
162162
where
163163
RuntimeCall: From<C>,
164164
{
165-
type OverarchingCall = RuntimeCall;
165+
type RuntimeCall = RuntimeCall;
166166
type Extrinsic = UncheckedExtrinsic;
167167
}
168168

runtime/westend/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ impl<C> frame_system::offchain::SendTransactionTypes<C> for Runtime
626626
where
627627
RuntimeCall: From<C>,
628628
{
629-
type OverarchingCall = RuntimeCall;
629+
type RuntimeCall = RuntimeCall;
630630
type Extrinsic = UncheckedExtrinsic;
631631
}
632632

0 commit comments

Comments
 (0)