Skip to content
This repository has been archived by the owner on Jun 7, 2019. It is now read-only.

Commit

Permalink
Update yuidoc annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
willclarktech committed Jul 18, 2017
1 parent 4bd9e01 commit 6300a8f
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion lib/transactions/transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ var slots = require('../time/slots.js');

/**
* @method createInTransfer
* @param dappId
* @param amount
* @param secret
* @param secondSecret
* @param dappId
* @param timeOffset
*
* @return {Object}
*/
Expand Down Expand Up @@ -60,6 +62,19 @@ function createInTransfer (dappId, amount, secret, secondSecret, timeOffset) {
return transaction;
}

/**
* @method createOutTransfer
* @param dappId
* @param transactionId
* @param recipientId
* @param amount
* @param secret
* @param secondSecret
* @param timeOffset
*
* @return {Object}
*/

function createOutTransfer (dappId, transactionId, recipientId, amount, secret, secondSecret, timeOffset) {
var now = new Date().getTime();
var time = timeOffset ? now - timeOffset : now;
Expand Down

0 comments on commit 6300a8f

Please sign in to comment.