ETHnodeJS/config.js

23 lines
503 B
JavaScript
Raw Permalink Normal View History

/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/javascript.js to edit this template
*/
const GENESIS_DATA = {
blockHeaders : {
parentHash : "--genesis-parent-hash--",
beneficiary: "--genesis-beneficiary--",
difficulty: 1,
number: 0,
timestamp: "--genesis-timestamp--",
nonce: 0
}
};
module.exports = {
GENESIS_DATA
};