Skip to content

docs(solidity): fix refund function documentation #130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion solidity/src/Base7683.sol
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ abstract contract Base7683 is IOriginSettler, IDestinationSettler {
* The refunded status should not be changed here but rather on the origin chain. To allow the user to retry in
* case some error occurs.
* Ensuring the order is eligible for refunding the origin chain is the responsibility of the caller.
* @param _orders An array of GaslessCrossChainOrders to refund.
* @param _orders An array of OnchainCrossChainOrder to refund.
*/
function refund(OnchainCrossChainOrder[] memory _orders) external payable {
bytes32[] memory orderIds = new bytes32[](_orders.length);
Expand Down