Skip to content

chore: fix typo in comment #124

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: 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
4 changes: 2 additions & 2 deletions contracts/src/interfaces/IEscrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ interface IEscrow {
/// @dev Create a transaction.
/// @param _deadline Time after which a party can automatically execute the arbitrable transaction.
/// @param _transactionUri The IPFS Uri Hash of the transaction.
/// @param _buyer Party that pays for the transaction. Note that msg.sender can provide finds on their behalf.
/// @param _buyer Party that pays for the transaction. Note that msg.sender can provide funds on their behalf.
/// @param _seller The recipient of the transaction.
/// @return transactionID The index of the transaction.
function createNativeTransaction(
Expand All @@ -91,7 +91,7 @@ interface IEscrow {
/// @param _token The ERC20 token contract.
/// @param _deadline Time after which a party can automatically execute the arbitrable transaction.
/// @param _transactionUri The IPFS Uri Hash of the transaction.
/// @param _buyer Party that pays for the transaction. Note that msg.sender can provide finds on their behalf.
/// @param _buyer Party that pays for the transaction. Note that msg.sender can provide funds on their behalf.
/// @param _seller The recipient of the transaction.
/// @return transactionID The index of the transaction.
function createERC20Transaction(
Expand Down