Skip to content

Commit d800cb8

Browse files
typo
1 parent 4a0c1d7 commit d800cb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

relayer/crates/starknet-chain-components/src/impls/send_message.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ where
3131
+ HasTxResponseType<TxResponse = TxResponse>
3232
+ HasMessageResponseType<MessageResponse = StarknetMessageResponse>
3333
+ CanPollTxResponse
34-
+ CanExtracMessageResponsesFromTxResponse
34+
+ CanExtractMessageResponsesFromTxResponse
3535
+ CanRaiseAsyncError<RevertedInvocation>
3636
+ CanRaiseAsyncError<UnexpectedTransactionTraceType>,
3737
{
@@ -51,15 +51,15 @@ where
5151
}
5252
}
5353

54-
pub trait CanExtracMessageResponsesFromTxResponse:
54+
pub trait CanExtractMessageResponsesFromTxResponse:
5555
HasTxResponseType + HasMessageResponseType + HasAsyncErrorType
5656
{
5757
fn extract_message_responses_from_tx_response(
5858
tx_response: Self::TxResponse,
5959
) -> Result<Vec<Self::MessageResponse>, Self::Error>;
6060
}
6161

62-
impl<Chain> CanExtracMessageResponsesFromTxResponse for Chain
62+
impl<Chain> CanExtractMessageResponsesFromTxResponse for Chain
6363
where
6464
Chain: HasTxResponseType<TxResponse = TxResponse>
6565
+ HasMessageResponseType<MessageResponse = StarknetMessageResponse>

0 commit comments

Comments
 (0)