2019-06-22 05:11:33 ERROR: ContextualCheckBlockHeader: forked chain 1405100 older than last notarized (height 1410530) vs
2019-06-22 05:11:33 AcceptBlockHeader ContextualCheckBlockHeader failed
2019-06-22 05:11:33 AcceptBlock AcceptBlockHeader error
2019-06-22 05:11:33 ERROR: ProcessNewBlock: AcceptBlock FAILED
2019-06-22 06:14:32 DisconnectTip: deleted 2 block notarisations in block: 030cf9bf00ce5510edc13f8c038f8aa8c9370a805e75957b62fff9aa340723d2
git log --pretty=format:'' | wc -l
27812
Get rust setup script & run
$ curl https://sh.rustup.rs -sSf | sh
info: downloading installer
Welcome to Rust!
This will download and install the official compiler for the Rust programming
language, and its package manager, Cargo.
$ sudo apt-get install build-essential git llvm-3.9-dev libclang-3.9-dev clang-3.9 libssl-dev pkg-config
[sudo] password for mylo:
Reading package lists... Done
Building dependency tree
Reading state information... Done
build-essential is already the newest version (12.4ubuntu1).
pkg-config is already the newest version (0.29.1-0ubuntu2).
git is already the newest version (1:2.17.1-1ubuntu0.4).
The following additional packages will be installed:
requirements
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev git libdb-dev libdb++-dev
get & build src
cd ~ ; git clone https://github.com/litecoin-project/litecoin.git -b 0.15 ; cd litecoin ; ./autogen.sh ; ./configure --without-miniupnpc --without-gui --with-incompatible-bdb ; make -j$(nproc) ; sudo ln -s /home/$USER/litecoin/src/litecoind /usr/local/bin/litecoind ; sudo ln -s /home/$USER/litecoin/src/litecoin-cli /usr/local/bin/litecoin-cli
GreerToday at 2:45 AM
Steps to AJSS awesomesauce:
cd ~/komodo
git checkout FSM
git clean -fdx #you will lose any changes that you have made in this repo
./zcutil/build.sh -j(nproc)
ln -s ~.komodo/pubkey.txt ~/komodo/src #you may do this differently
komodo-cli stop
FROM ubuntu:18.04 as build
ENV BUILD_PACKAGES="build-essential git llvm-3.9-dev libclang-3.9-dev clang-3.9 cmake libssl-dev pkg-config jq curl"
RUN apt-get update && \
apt-get install -y $BUILD_PACKAGES
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
RUN /bin/bash -c "source $HOME/.cargo/env && rustup install nightly-2019-06-26 && rustup default nightly-2019-06-26 && rustup component add rustfmt-preview"
RUN git clone https://github.com/KomodoPlatform/atomicDEX-API --branch mm2 --single-branch
RUN cd atomicDEX-API && /bin/bash -c "source $HOME/.cargo/env && cargo build --features native -vv"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
1 sudo vi /etc/netplan/50-cloud-init.yaml | |
2 sudo netplan apply | |
3 sudo apt-get update | |
4 sudo apt-get upgrade | |
5 wget https://github.com/Kitware/CMake/releases/download/v3.15.3/cmake-3.15.3.tar.gz | |
6 tar zxvf cmake-3.15.3.tar.gz | |
7 cd cmake-3.15.3/ | |
8 ./configure | |
9 cd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#VRSC | |
cd $HOME | |
git clone https://github.com/VerusCoin/VerusCoin.git | |
cd VerusCoin | |
git checkout v0.6.0-7 | |
./zcutil/build.sh -j4 | |
# from webworker | |
#HUSH3 |