Exchange market for FLO to rupee# and vise-versa
- Fixed: transferToken not processed by server - blockchainReCheck stops and adds itself to Timeout callback when sinkID is not loaded (uses MINI_PERIOD_INTERVAL = PERIOD_INTERVAL/10 for timeout ms) - Fixed: confirmDepositFLO - asset attribute missing in SQL syntax - When sinkID is not loaded, cancel check for confirmDepositFLO and confirmDepositToken - Fixed: Incorrect receiver (sinkID) bug in confirmDepositFLO.checkTx - Uncommented loaded, received, retrived sink logs - Changed (SQL schema) sign field in RequestLog table to VARCHAR(160) - Fixed: minor syntax errors and typos bugs |
||
|---|---|---|
| args | ||
| docs | ||
| setup | ||
| src | ||
| .gitattributes | ||
| .gitignore | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| start.js | ||
exchange-market
Exchange market for FLO to rupee# and vise-versa
Run commands
npm install - Install the app and node modules.
npm run help - List all commands.
npm run setup - Finish the setup (configure and reset password).
npm run configure - Configure the app.
npm run reset-password - Reset the password (for private-key).
npm run create-schema - Create schema in MySQL database.
npm start - Start the application (main).
NOTE:
env variable PASSWORD required for npm start.
Windows:
$env:PASSWORD="<password>"; npm start
Linux:
PASSWORD="<password"> npm start
(Optional) Multiple instance can be run/setup on the same dir with different config files by using env variable 'I'.
Windows:
$env:I="<instance_ID>"; <command>
Linux:
I="<instance_ID>" <command>