mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 08:41:02 +00:00
Removed unused AccountId from trait MessagesBridge (#1600)
This commit is contained in:
committed by
Bastian Köcher
parent
be2a13c747
commit
87c3a57942
@@ -182,7 +182,7 @@ pub struct SendMessageArtifacts {
|
||||
}
|
||||
|
||||
/// Messages bridge API to be used from other pallets.
|
||||
pub trait MessagesBridge<SenderOrigin, AccountId, Balance, Payload> {
|
||||
pub trait MessagesBridge<SenderOrigin, Balance, Payload> {
|
||||
/// Error type.
|
||||
type Error: Debug;
|
||||
|
||||
@@ -201,8 +201,8 @@ pub trait MessagesBridge<SenderOrigin, AccountId, Balance, Payload> {
|
||||
#[derive(Eq, RuntimeDebug, PartialEq)]
|
||||
pub struct NoopMessagesBridge;
|
||||
|
||||
impl<SenderOrigin, AccountId, Balance, Payload>
|
||||
MessagesBridge<SenderOrigin, AccountId, Balance, Payload> for NoopMessagesBridge
|
||||
impl<SenderOrigin, Balance, Payload> MessagesBridge<SenderOrigin, Balance, Payload>
|
||||
for NoopMessagesBridge
|
||||
{
|
||||
type Error = &'static str;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user