Tutorials

recipe for target 'build/rpcrawtransaction.o' failed

src/rpcrawtransaction.cpp:245:77: required from here /usr/include/boost/variant/get.hpp:178:5: error: invalid application of ‘sizeof’ to incomplete type ‘boost::STATIC_ASSERTION_FAILURE’ BOOST_STATIC_ASSERT_MSG( ^ Makefile:2222: recipe for target ‘build/rpcrawtransaction.o’ failed make: *** [build/rpcrawtransaction.o] Error src/rpcrawtransaction.cpp around line 242 const CScriptID& hash = boost::get(address); Change to: const CScriptID& hash = boost::get(address);

November 26, 2017

How to add nodes to configuration file

Wallet must be off when doing this! Enable display hidden files: http://www.howtogeek.com/howto/windows-vista/show-hidden-files-and-folders-in-windows-vista/ Windows users: Go to C:\Users\YOUR-USERNAME\Appdata\Roaming\YOUR-COIN Linux users: Go to /home/USER/.YOUR-COIN Right click make new text file and name it YOUR-COIN.conf , it must be .conf not .txt You’ll need to check right as some coins have file starting with capital letter, so it […]

August 26, 2015

fatal error: opening dependency file obj/zerocoin/Accumulator.d

For Error on Linux compilation: zerocoin/Accumulator.cpp:xxx:1: fatal error: opening dependency file obj/zerocoin/Accumulator.d: No such file or directory compilation terminated. Use the following command in src/ folder to fix: mkdir -p obj/zerocoin && chmod +x leveldb/build_detect_platform‏ Compile again

June 15, 2015

How to compile crypto coin static daemon on Ubuntu

First install build essentials and git tool: sudo apt-get install git build-essential Read info from GitHub source page of coin which dependencies are required and install them. Examples(not same for all coins): sudo apt-get install libboost-all-dev libminiupnpc-dev sudo apt-get install libssl-dev libdb5.1-dev libdb5.1++-dev libboost-all-dev Clone git: git clone https://github.com/YOUR-COIN.git Browse: cd YOUR-COIN/src Compile: make -f […]

What is a crypto coin full node?

A full node is a program that fully validates transactions and blocks. Almost all full nodes also help the network by accepting transactions and blocks from other full nodes, validating those transactions and blocks, and then relaying them to further full nodes. Most full nodes also serve lightweight clients by allowing them to transmit their […]

May 16, 2015