Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Josh Wilcox
crown-core
Commits
5116a504
Commit
5116a504
authored
10 years ago
by
vertoe
Browse files
Options
Download
Email Patches
Plain Diff
Update dns seeds
parent
892a13ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
TODO.md
+1
-1
TODO.md
src/chainparams.cpp
+4
-8
src/chainparams.cpp
with
5 additions
and
9 deletions
+5
-9
TODO.md
View file @
5116a504
...
...
@@ -9,12 +9,12 @@ DONE:
-
Strings in config, path and pid (~/.bitcoin --> ~/.darkcoin)
-
Ports for communication and RPC (8333 --> 9999; 8332 --> 9998)
-
Version numbers, protocol version, wallet version (compatible with DRK network)
MUST-HAVE:
----------
-
Version numbers, protocol version, wallet version (compatible with DRK network)
-
Adress versions (Public keys, Multisig keys)
-
Adjust algorithm (SHA256 --> X11)
-
Adjust difficulty/subsidity (KGW, DGW based on blockheight)
...
...
This diff is collapsed.
Click to expand it.
src/chainparams.cpp
View file @
5116a504
...
...
@@ -141,12 +141,8 @@ public:
assert
(
hashGenesisBlock
==
uint256
(
"0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"
));
assert
(
genesis
.
hashMerkleRoot
==
uint256
(
"0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"bitcoin.sipa.be"
,
"seed.bitcoin.sipa.be"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"bluematt.me"
,
"dnsseed.bluematt.me"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"dashjr.org"
,
"dnsseed.bitcoin.dashjr.org"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"bitcoinstats.com"
,
"seed.bitcoinstats.com"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"bitnodes.io"
,
"seed.bitnodes.io"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"xf2.org"
,
"bitseed.xf2.org"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"darkcoin.io"
,
"dnsseed.darkcoin.io"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"darkcoin.qa"
,
"dnsseed.darkcoin.qa"
));
base58Prefixes
[
PUBKEY_ADDRESS
]
=
list_of
(
0
);
base58Prefixes
[
SCRIPT_ADDRESS
]
=
list_of
(
5
);
...
...
@@ -209,8 +205,8 @@ public:
vFixedSeeds
.
clear
();
vSeeds
.
clear
();
vSeeds
.
push_back
(
CDNSSeedData
(
"
bit
coin.
petertodd.org
"
,
"testnet-seed.
bit
coin.
petertodd.org
"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"
bluematt.me
"
,
"testnet-seed.
bluematt.me
"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"
dark
coin.
io
"
,
"testnet-seed.
dark
coin.
io
"
));
vSeeds
.
push_back
(
CDNSSeedData
(
"
darkcoin.qa
"
,
"testnet-seed.
darkcoin.qa
"
));
base58Prefixes
[
PUBKEY_ADDRESS
]
=
list_of
(
111
);
base58Prefixes
[
SCRIPT_ADDRESS
]
=
list_of
(
196
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help