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 9b8adc7 commit 8bd26ba
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lib/transactions/transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,14 @@ var slots = require('../time/slots.js');

/**
* @method createInTransfer
* @param dappId
* @param amount
* @param secret
* @param secondSecret
<<<<<<< HEAD
* @param dappId
=======
>>>>>>> Update yuidoc annotations
* @param timeOffset
*
* @return {Object}
Expand Down Expand Up @@ -61,6 +66,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 8bd26ba

Please sign in to comment.