fix: type error remove file

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2019-07-10 16:24:32 +08:00
parent 4527e437fa
commit 87a863a228
8 changed files with 41 additions and 52 deletions

View File

@@ -23,7 +23,7 @@ global.HTTPCaller.CreateAccount = function(Params, response) {
var MaxCountViewRows = global.HTTP_MAX_COUNT_ROWS;
global.HTTPCaller.GetBalance = function(Params) {
if (typeof Params === "object") {
var arr = global.DApps.Accounts.GetRowsAccounts(ParseNum(Params.AccountID), 1);
var arr = global.DApps.Accounts.GetRowsAccounts(global.ParseNum(Params.AccountID), 1);
if (arr.length) {
arr[0].result = 1;
return arr[0];

View File

@@ -14,13 +14,10 @@ import './constant'
import './log'
let {
ToLog,
TO_ERROR_LOG,
SaveToFile,
TimeStart,
LOAD_CONST,
LoadParams,
GetDataPath,
CONST_NAME_ARR,
SaveParams,
SAVE_CONST,
@@ -41,26 +38,11 @@ String.prototype.right = function(count) {
else
return this.substr(0, this.length);
};
if (fs.existsSync("./lib/bintrees"))
global.RBTree = require("../lib/bintrees").RBTree;
else
global.RBTree = require('bintrees').RBTree;
if (fs.existsSync("./lib/ntp-client"))
global.ntpClient = require('../lib/ntp-client');
else
global.ntpClient = require('ntp-client');
global.RBTree = require('bintrees').RBTree;
global.ntpClient = require('ntp-client');
global.Stun = require('stun');
global.ZIP = require("zip");
var strOS = os.platform() + "_" + os.arch();
if (global.NWMODE)
strOS = strOS + "-nw" + global.NWVERSION;
if (fs.existsSync("./lib/secp256k1/" + strOS + "/secp256k1.node")) {
try {
global.secp256k1 = require('../lib/secp256k1/' + strOS + '/secp256k1.node');
}
catch (e) {
}
}
if (!global.secp256k1) {
global.secp256k1 = require('secp256k1');
}

View File

@@ -10,7 +10,7 @@
var START_NONCE = 0;
const COUNT_FIND_HASH1 = 64;
const DELTA_LONG_MINING = 5000;
var DELTA_LONG_MINING = 5000;
var BLOCKNUM_ALGO2 = 6560000;
if (global.LOCAL_RUN || global.TEST_NETWORK) {
BLOCKNUM_ALGO2 = 0;