Update network magics and genesis block difficulty for v1.0.0-rc2

This commit is contained in:
Jack Grigg 2016-10-23 00:02:31 -05:00
parent ebb8b5683a
commit 387541af3d
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ var Hash = require('../crypto/hash');
var JSUtil = require('../util/js');
var $ = require('../util/preconditions');
var GENESIS_BITS = 0x200f0f0f;
var GENESIS_BITS = 0x2003ffff;
/**
* Instantiate a BlockHeader from a Buffer, JSON object, or Object with

View File

@ -140,7 +140,7 @@ addNetwork({
xprivkey: 0x0488ade4,
zaddr: 0x169a,
zkey: 0xab36,
networkMagic: 0x9fee4ed8,
networkMagic: 0xf91bacab,
port: 8233,
dnsSeeds: [
// 'seed.bitcoin.sipa.be',
@ -180,7 +180,7 @@ var testnet = get('testnet');
var TESTNET = {
PORT: 18233,
NETWORK_MAGIC: BufferUtil.integerAsBuffer(0x0c9ed7a2),
NETWORK_MAGIC: BufferUtil.integerAsBuffer(0xf99f24b6),
DNS_SEEDS: [
'dnsseed.testnet.z.cash',
]