Skip to content

Commit

Permalink
ready
Browse files Browse the repository at this point in the history
  • Loading branch information
lopu committed Jul 11, 2018
1 parent a54829e commit a537a1f
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
96 changes: 48 additions & 48 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,61 +128,61 @@ RUN \
-DLOW_MEMORY_NODE=OFF \
-DCLEAR_VOTES=OFF \
-DSKIP_BY_TX_ID=ON \
-DBUILD_STEEM_TESTNET=ON \
-DBUILD_STEEM_TESTNET=OFF \
-DSTEEM_STATIC_BUILD=${STEEM_STATIC_BUILD} \
.. \
&& \
make -j$(nproc) && \
make install && \
rm -rf /usr/local/src/steem

RUN \
apt-get remove -y \
automake \
autotools-dev \
bsdmainutils \
build-essential \
cmake \
doxygen \
dpkg-dev \
git \
libboost-all-dev \
libc6-dev \
libexpat1-dev \
libgcc-5-dev \
libhwloc-dev \
libibverbs-dev \
libicu-dev \
libltdl-dev \
libncurses5-dev \
libnuma-dev \
libopenmpi-dev \
libpython-dev \
libpython2.7-dev \
libreadline-dev \
libreadline6-dev \
libssl-dev \
libstdc++-5-dev \
libtinfo-dev \
libtool \
linux-libc-dev \
m4 \
make \
manpages \
manpages-dev \
mpi-default-dev \
python-dev \
python2.7-dev \
python3-dev \
&& \
apt-get autoremove -y && \
rm -rf \
/var/lib/apt/lists/* \
/tmp/* \
/var/tmp/* \
/var/cache/* \
/usr/include \
/usr/local/include
# RUN \
# apt-get remove -y \
# automake \
# autotools-dev \
# bsdmainutils \
# build-essential \
# cmake \
# doxygen \
# dpkg-dev \
# git \
# libboost-all-dev \
# libc6-dev \
# libexpat1-dev \
# libgcc-5-dev \
# libhwloc-dev \
# libibverbs-dev \
# libicu-dev \
# libltdl-dev \
# libncurses5-dev \
# libnuma-dev \
# libopenmpi-dev \
# libpython-dev \
# libpython2.7-dev \
# libreadline-dev \
# libreadline6-dev \
# libssl-dev \
# libstdc++-5-dev \
# libtinfo-dev \
# libtool \
# linux-libc-dev \
# m4 \
# make \
# manpages \
# manpages-dev \
# mpi-default-dev \
# python-dev \
# python2.7-dev \
# python3-dev \
# && \
# apt-get autoremove -y && \
# rm -rf \
# /var/lib/apt/lists/* \
# /tmp/* \
# /var/tmp/* \
# /var/cache/* \
# /usr/include \
# /usr/local/include

RUN useradd -s /bin/bash -m -d /var/lib/steemd steemd

Expand Down
2 changes: 1 addition & 1 deletion libraries/protocol/include/steemit/protocol/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#define STEEMIT_OWNER_AUTH_HISTORY_TRACKING_START_BLOCK_NUM 1
#else // IS LIVE STEEM NETWORK

#define STEEMIT_INIT_PUBLIC_KEY_STR "STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX"
#define STEEMIT_INIT_PUBLIC_KEY_STR "EZT66fFDNhgj2Wirnjb4yFB6jwEjEM9Nzw2KWF7bXGtdS8QU9LTzX"
#define STEEMIT_CHAIN_ID (steemit::protocol::chain_id_type())
#define VESTS_SYMBOL (uint64_t(6) | (uint64_t('V') << 8) | (uint64_t('E') << 16) | (uint64_t('S') << 24) | (uint64_t('T') << 32) | (uint64_t('S') << 40)) ///< VESTS with 6 digits of precision
#define STEEM_SYMBOL (uint64_t(3) | (uint64_t('S') << 8) | (uint64_t('T') << 16) | (uint64_t('E') << 24) | (uint64_t('E') << 32) | (uint64_t('M') << 40)) ///< STEEM with 3 digits of precision
Expand Down

0 comments on commit a537a1f

Please sign in to comment.