File tree 1 file changed +3
-3
lines changed
relayer/crates/starknet-chain-components/src/impls
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 31
31
+ HasTxResponseType < TxResponse = TxResponse >
32
32
+ HasMessageResponseType < MessageResponse = StarknetMessageResponse >
33
33
+ CanPollTxResponse
34
- + CanExtracMessageResponsesFromTxResponse
34
+ + CanExtractMessageResponsesFromTxResponse
35
35
+ CanRaiseAsyncError < RevertedInvocation >
36
36
+ CanRaiseAsyncError < UnexpectedTransactionTraceType > ,
37
37
{
@@ -51,15 +51,15 @@ where
51
51
}
52
52
}
53
53
54
- pub trait CanExtracMessageResponsesFromTxResponse :
54
+ pub trait CanExtractMessageResponsesFromTxResponse :
55
55
HasTxResponseType + HasMessageResponseType + HasAsyncErrorType
56
56
{
57
57
fn extract_message_responses_from_tx_response (
58
58
tx_response : Self :: TxResponse ,
59
59
) -> Result < Vec < Self :: MessageResponse > , Self :: Error > ;
60
60
}
61
61
62
- impl < Chain > CanExtracMessageResponsesFromTxResponse for Chain
62
+ impl < Chain > CanExtractMessageResponsesFromTxResponse for Chain
63
63
where
64
64
Chain : HasTxResponseType < TxResponse = TxResponse >
65
65
+ HasMessageResponseType < MessageResponse = StarknetMessageResponse >
You can’t perform that action at this time.
0 commit comments