Compare View

switch
from
...
to
 
Commits (4)

Changes

Showing 7 changed files Side-by-side Diff

... ... @@ -9,6 +9,8 @@
9 9 "::ffff:127.0.0.1",
10 10 "::1"
11 11 ],
  12 + "ascending_deposit": false,
  13 + "ascending_mutation": false,
12 14 "blacklist_help_for_origins": [],
13 15 "blacklist_help_for_origin_transports": []
14 16 }
15 17 \ No newline at end of file
lib/command-handler/buy.js
1   -"use strict";
2   -
3 1 const moment = require('moment');
4 2  
5 3 const logger = require('komodo-sdk/logger');
lib/command-handler/index.js
1   -"use strict";
2   -
3 1 const logger = require('komodo-sdk/logger');
4 2  
5 3 const commandParser = require('../command-parser');
lib/command-handler/listdeposit.js
  1 +const config = require('komodo-sdk/config');
1 2 const coreEndpoint = '/histories/mutations/deposit-and-transfer';
2 3  
3 4 const commandError = require('./error');
... ... @@ -31,6 +32,7 @@ function execute(tokens, params, cb) {
31 32 asker_terminal_name: params.from,
32 33 asker_terminal_password: tokens[idxPin],
33 34 created_date: tokens.length < 3 ? null : tokens[1],
  35 + ascending: (config.ascending_mutation || config.ascending_deposit) ? 'true' : 'false',
34 36 };
35 37  
36 38 coreapi(coreEndpoint, coreParams, 'GET', cb);
lib/http-listener.js
1   -"use strict";
2   -
3 1 const express = require('express');
4 2 const bodyParser = require('body-parser');
5 3 const ipfilter = require('express-ipfilter').IpFilter
1 1 {
2 2 "name": "komodo-center-messaging",
3   - "version": "0.12.0",
  3 + "version": "0.12.1",
4 4 "lockfileVersion": 1,
5 5 "requires": true,
6 6 "dependencies": {
1 1 {
2 2 "name": "komodo-center-messaging",
3   - "version": "0.12.0",
  3 + "version": "0.12.1",
4 4 "description": "Komodo Common Messaging Center",
5 5 "main": "index.js",
6 6 "scripts": {