Remove provider from requestMultiforward interface (#78)

This commit is contained in:
derpy-duck 2023-02-06 12:27:05 -05:00 committed by GitHub
parent e1b57fb4df
commit d59bd6d82a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

@ -30,12 +30,9 @@ interface ICoreRelayer {
* @dev When requesting a multiforward, the rollover chain is the chain where any remaining funds should be sent once all
* the requested budgets have been covered. The remaining funds will be added to the computeBudget of the rollover chain.
*/
function requestMultiforward(
DeliveryRequestsContainer memory deliveryRequests,
uint16 rolloverChain,
uint32 nonce,
IRelayProvider provider
) external payable;
function requestMultiforward(DeliveryRequestsContainer memory deliveryRequests, uint16 rolloverChain, uint32 nonce)
external
payable;
function deliverSingle(TargetDeliveryParametersSingle memory targetParams) external payable;