Commit some new networking code, adding integration, broker still not 100%, hasn't been committed
This commit is contained in:
parent
1af6d56e2d
commit
050e69e23f
18 changed files with 1829 additions and 359 deletions
|
@ -2,6 +2,9 @@ const DIFFICULTY = 3;
|
|||
const MINE_RATE = 3000;
|
||||
const MINING_REWARD = 50;
|
||||
|
||||
const DEFAULT_UI_HTML = "./ui/wallet-ui.html";
|
||||
const DEFAULT_UI_JS = "./ui/wallet-logic.js";
|
||||
|
||||
const DEFAULT_PORT_MINER_BASE = 3000;
|
||||
const DEFAULT_PORT_MINER_API = DEFAULT_PORT_MINER_BASE + 1;
|
||||
const DEFAULT_PORT_MINER_CHAIN = DEFAULT_PORT_MINER_BASE + 2;
|
||||
|
@ -28,6 +31,9 @@ module.exports = {
|
|||
MINE_RATE,
|
||||
MINING_REWARD,
|
||||
|
||||
DEFAULT_UI_HTML,
|
||||
DEFAULT_UI_JS,
|
||||
|
||||
DEFAULT_PORT_MINER_API,
|
||||
DEFAULT_PORT_MINER_CHAIN,
|
||||
DEFAULT_PORT_MINER_TX_SHARE,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue