Skip to content
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

fix(evm): N01 - Add missing docstring for repaymentAddress #830

Open
wants to merge 3 commits into
base: svm-dev
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: 2 additions & 0 deletions contracts/SpokePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -993,6 +993,7 @@ abstract contract SpokePool is
* handleV3AcrossMessage() public function
* @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has
* passed. Will receive inputAmount of the equivalent token to inputToken on the repayment chain.
* @param repaymentAddress Address the relayer wants to be receive their refund at.
*/
function fillV3Relay(
V3RelayData calldata relayData,
Expand Down Expand Up @@ -1031,6 +1032,7 @@ abstract contract SpokePool is
* @param relayData struct containing all the data needed to identify the deposit to be filled. See fillV3Relay().
* @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has
* passed. See fillV3Relay().
* @param repaymentAddress Address the relayer wants to be receive their refund at.
* @param updatedOutputAmount New output amount to use for this deposit.
* @param updatedRecipient New recipient to use for this deposit.
* @param updatedMessage New message to use for this deposit.
Expand Down
Loading