forked from circlecloud/tera
13
src/a.sh
13
src/a.sh
@@ -1,13 +0,0 @@
|
||||
#!/bin/bash
|
||||
EXT=js
|
||||
DIST=ts
|
||||
for name in `ls *.${EXT}`; do
|
||||
mv $name ${name%.${EXT}}.${DIST}
|
||||
done
|
||||
: Function;
|
||||
global.
|
||||
|
||||
BlockNumDB
|
||||
RelayMode
|
||||
LoadHistoryMessage
|
||||
LastLoadedBlockNum
|
||||
@@ -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];
|
||||
|
||||
@@ -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');
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
{
|
||||
"name": "tera",
|
||||
"version": "1.0.0",
|
||||
"description": "Tera wallet",
|
||||
"main": "run-nw.js",
|
||||
"main2": "run-electron.js",
|
||||
"repository": "https://git.yumc.pw/circlecloud/tera.git",
|
||||
"keywords": [
|
||||
"wallet",
|
||||
"cryptowallet",
|
||||
"quick",
|
||||
"messenger",
|
||||
"cryptocurrency",
|
||||
"cryptomessenger"
|
||||
],
|
||||
"author": "progr76@gmail.com",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"bintrees": "^1.0.2",
|
||||
"greenlock": "^2.6.7",
|
||||
"ntp-client": "^0.5.3",
|
||||
"secp256k1": "^3.6.1",
|
||||
"stun": "^1.1.0",
|
||||
"uglify-js": "^3.4.9",
|
||||
"zip": "^1.2.0"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
|
||||
:loop
|
||||
node.exe run-node.js
|
||||
goto :loop
|
||||
|
||||
Reference in New Issue
Block a user