Created
February 11, 2019 02:14
Revisions
-
gabrielbiga created this gist
Feb 11, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ /** * Function to process the transfer transaction. * * @param {org.wiboo.wibxp.financial.TransferTransaction} tx The financial transaction * @transaction */ function transferTransaction(tx) { // Check if the amount is valid isAmountValid(tx.amount); // … Rest of your code … }