Skip to content

Instantly share code, notes, and snippets.

@shopglobal
Created December 3, 2017 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shopglobal/9f9fe38179e94b545a65f034965b480c to your computer and use it in GitHub Desktop.
Save shopglobal/9f9fe38179e94b545a65f034965b480c to your computer and use it in GitHub Desktop.
testcoin
I make those changes in the original code:
https://github.com/pmitchev/testcoin/commit/bde47c6b7c575ab04aee43cc372ff1ebd3306d7a
I buy blank Ubuntu 14.04 VPS (2 GB RAM) (32GB on compile time)
I install dependencies:
wget https://raw.githubusercontent.com/forknote/cryptonote-generator/master/configure.sh
bash configure.sh
Clone and compile:
git clone https://github.com/pmitchev/testcoin/
cd testcoin
mkdir -p build/release; cd build/release
cmake -D STATIC=ON -D ARCH="x86-64" -D CMAKE_BUILD_TYPE=Release ../..
make -j
Run the daemon and start generating blocks:
cd src
./testcoind
start_mining 21YR5mw5BF2ah3yVE3kbhkjDwvuv21VR6D7hnpm4zHveDsvq5WEwyTxXLXNwtU5K4Pen89ZZzJ81fB3vxHABEUJCAhxXz2v
I get VPS from Azure. Team Foundation Server 2013 Update 4 image. A2 size
I install dependencies:
https://github.com/forknote/cryptonote-generator/blob/master/docs/windows-requirements-install.md
Download and build:
git clone https://github.com/pmitchev/testcoin/
cd testcoin
mkdir build
cd build
cmake -G "Visual Studio 12 Win64" ".."
msbuild.exe Bytecoin.sln /p:Configuration=Release
Run the daemon:
cd src\Release
testcoind.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment