mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 08:41:07 +00:00
Implement DispatchInfo type for SignedExtension (#39)
This commit is contained in:
@@ -63,6 +63,7 @@ where
|
|||||||
type AccountId = u64;
|
type AccountId = u64;
|
||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned = u32;
|
type AdditionalSigned = u32;
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
&self,
|
&self,
|
||||||
@@ -92,6 +93,7 @@ where
|
|||||||
type AccountId = u64;
|
type AccountId = u64;
|
||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned = T::Hash;
|
type AdditionalSigned = T::Hash;
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
&self,
|
&self,
|
||||||
@@ -123,6 +125,7 @@ where
|
|||||||
type AccountId = u64;
|
type AccountId = u64;
|
||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned = T::Hash;
|
type AdditionalSigned = T::Hash;
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
&self,
|
&self,
|
||||||
@@ -142,6 +145,7 @@ where
|
|||||||
type AccountId = u64;
|
type AccountId = u64;
|
||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned = ();
|
type AdditionalSigned = ();
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
&self,
|
&self,
|
||||||
@@ -161,6 +165,7 @@ where
|
|||||||
type AccountId = u64;
|
type AccountId = u64;
|
||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned = ();
|
type AdditionalSigned = ();
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
&self,
|
&self,
|
||||||
@@ -181,6 +186,7 @@ where
|
|||||||
type AccountId = u64;
|
type AccountId = u64;
|
||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned = ();
|
type AdditionalSigned = ();
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
&self,
|
&self,
|
||||||
@@ -200,6 +206,7 @@ where
|
|||||||
type AccountId = u64;
|
type AccountId = u64;
|
||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned = ();
|
type AdditionalSigned = ();
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
&self,
|
&self,
|
||||||
@@ -260,6 +267,7 @@ impl<T: System + Balances + Send + Sync> SignedExtension for DefaultExtra<T> {
|
|||||||
type Call = ();
|
type Call = ();
|
||||||
type AdditionalSigned =
|
type AdditionalSigned =
|
||||||
<<Self as SignedExtra<T>>::Extra as SignedExtension>::AdditionalSigned;
|
<<Self as SignedExtra<T>>::Extra as SignedExtension>::AdditionalSigned;
|
||||||
|
type DispatchInfo = ();
|
||||||
type Pre = ();
|
type Pre = ();
|
||||||
|
|
||||||
fn additional_signed(
|
fn additional_signed(
|
||||||
|
|||||||
Reference in New Issue
Block a user