-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md~
46 lines (35 loc) · 1.78 KB
/
README.md~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# HondaisCoin Core [HNDC]
==========================
## What is HondaisCoin?
HondaisCoin is a cryptocurrency like litecoin, although it does not use SHA256 as its proof of work (POW). Taking development cues from Tenebrix and Litecoin, HondaisCoin currently employs a simplified variant of scrypt.
https://hondaiscoin.com/
- Coin Name: HondaisCoin
- Currency unit : HNDC
- Algorithm : Scrypt
- Block Interval : 1 minute (60 seconds)
- Difficulty Retarget : Every block (using Kimoto's Gravity Well)
- Total supply : 120,000,000,000 HNDC
- Max total Supply : 200,000,000,000 HNDC
- Premine: First block is 120,000,000,000 HNDC
- Bonus reward for block 2 to 10,000 of 15000HNDC
- Bonus reward for block 10,000 - 25,000 of 10000HNDC
- Bonus reward for block 25,000 - 100,000 of 2500HNDC
- Bonus reward for block 100,000 - 1,200,000 of 1000 HNDC
- Subsidy is cut in half every 200,000 blocks starting at block 1600000
### Overview plz make hondaiscoind/hondaiscoin-cli/hondaiscoin-qt
The following are developer notes on how to build HondaisCoin on your native platform. They are not complete guides, but include notes on the necessary libraries, compile flags, etc.
- [OSX Build Notes](doc/build-osx.md)
- [Unix Build Notes](doc/build-unix.md)
- [Windows Build Notes](doc/build-msw.md)
# hondaiscoin.conf
- listen=1
- rpcallowip=127.0.0.1
- rpcport=25546
- port=25547
- rpcuser=HNDCuser
- rpcpassword=HNDCpassword
**DEBUG_LOCKORDER**
HondaisCoin Core is a multithreaded application, and deadlocks or other multithreading bugs
can be very difficult to track down. Compiling with -DDEBUG_LOCKORDER (configure
CXXFLAGS="-DDEBUG_LOCKORDER -g") inserts run-time checks to keep track of what locks
are held, and adds warning to the debug.log file if inconsistencies are detected.