Mobirise Web Site Builder

How to Add a config to your windows wallet for more nodes:

1. Download the windows wallet+config from the BCT talk thread.


2. Run the kingncoin exe, let if fully open then close it.


3. in the windows search type %appdata% and you should see a folder called roaming pop up.


4. open roaming and inside the roaming folder you should see a folder called kingncoin


5. take the kingncoin.conf file that i included with the wallet and drag it into their.


6. Reopen the wallet and you should now have 3-4 connections. Smiley

.

Compile Daemon on Cent OS 6:


clone the git repo:
Code:
git clone https://github.com/ulandort/kingncoin-source.git

cd (change current working directory) into the newly created directory, and go straight to src folder:
Code:
cd kingncoin-source/src

If you're using VPS, maybe there is no command line called lscpu.
The workaround for this is by editing the file makefile.unix,
change the line:
Code:
ARCH:=$(system lscpu | head -n 1 | awk '{print $2}')

to:
Code:
ARCH:=$(uname -p)

If your boost-thread library version is 1.37 and above, 
add new variable below this line:
Code:
# for boost 1.37, add -mt to the boost libraries

type/insert a new line:
Code:
BOOST_LIB_SUFFIX=-mt

How to find out the boost-thread library version?
Just type this command if you are using CentOS machine:
Code:
rpm -qa | grep boost-thread

in my case, it is: boost-thread-1.41.0-25.el6.centos.x86_64

Close/save the file.

Then you have to create a folder called zerocoin inside folder obj, which is not yet available:
Code:
mkdir -p obj/zerocoin

After that, give executable permission to file build_detect_platform:
Code:
chmod +x src/leveldb/build_detect_platform

Compile libleveldb.a and libmemenv.a library which is needed for linking kingncoind binnary:
Code:
cd src/leveldb && make libleveldb.a libmemenv.a

After everything compiled, go back to src directory and start compiling:
Code:
cd .. && make -f makefile.unix USE_UPNP=-