Skip to content

Commit

Permalink
style(swaparoo): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Mar 5, 2024
1 parent 3f922a0 commit 81d7bd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contract/src/swaparoo.contract.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const start = async zcf => {
* @param { ZCFSeat } firstSeat
* @param {{ addr: string }} offerArgs
*/
const makeSecondInvitation = async (firstSeat, offerArgs ) => {
const makeSecondInvitation = async (firstSeat, offerArgs) => {
mustMatch(offerArgs, harden({ addr: M.string() }));
const { addr: secondPartyAddress } = offerArgs;

Expand Down Expand Up @@ -114,9 +114,9 @@ export const start = async zcf => {
mustMatch(issuers, M.arrayOf(IssuerShape));
for (const i of issuers) {
if (!Object.values(zcf.getTerms().issuers).includes(i)) {
zcf.saveIssuer(i, `Issuer${issuerNumber += 1}`);
zcf.saveIssuer(i, `Issuer${(issuerNumber += 1)}`);
}
};
}
const proposalShape = M.splitRecord({
give: M.splitRecord({ Fee: feeShape }),
});
Expand Down

0 comments on commit 81d7bd9

Please sign in to comment.