密码是本地存储的,你可以多试几次
A
albert
@albert
5
Reputation
91
Posts
2262
Profile views
2
Followers
3
Following
Posts made by albert
-
RE: 测试网络转账问题
查看程序版本
root@iZuf6hgcl7tib8ubkczy4nZ:~/opt/gxb# ./programs/cli_wallet/cli_wallet -v Version: testnet-1.0.180911-24-gff78aa3 SHA: ff78aa366733ae90a6c47306d0f8bb895580a136 Timestamp: 16 days ago SSL: OpenSSL 1.0.1f 6 Jan 2014 Boost: 1.67 Websocket++: 0.7.0 root@iZuf6hgcl7tib8ubkczy4nZ:~/opt/gxb# root@iZuf6hgcl7tib8ubkczy4nZ:~/opt/gxb# ./programs/witness_node/witness_node -v Version: testnet-1.0.180911-24-gff78aa3 SHA: ff78aa366733ae90a6c47306d0f8bb895580a136 Timestamp: 16 days ago SSL: OpenSSL 1.0.1f 6 Jan 2014 Boost: 1.67 Websocket++: 0.7.0
-
GXChain数据解密
GXChain上txid为cbfdf2e235fbd00565d935fb3aeb11b359115852的交易中,有一条加密的数据,解开后会有惊喜。请在破解后将过程回复在留言区。
-
RE: gxb-core源码编译问题,求帮忙
mac环境下编译:
安装依赖
brew install cmake@3.11 openssl wget git openssl autoconf automake doxygen libtool llvm@4
安装 boost
先下载一个包wget https://sourceforge.net/projects/boost/files/boost/1.67.0/boost_1_67_0.tar.gz/download -O boost_1_67_0.tar.gz tar -zxvf boost_1_67_0.tar.gz cd boost_1_67_0 && chmod +x bootstrap.sh ./bootstrap.sh ./b2 --buildtype=complete install toolset=clang cxxflags="-arch x86_64" linkflags="-arch x86_64"
安装cmake(如果cmake是3.11以上版本,可跳过此步骤)
cd /tmp && wget https://cmake.org/files/v3.11/cmake-3.11.0-Linux-x86_64.sh mkdir -p /opt/cmake && chmod +x /tmp/cmake-3.11.0-Linux-x86_64.sh bash /tmp/cmake-3.11.0-Linux-x86_64.sh --prefix=/opt/cmake --skip-license ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
编译llvm支持WASM
mkdir ~/wasm-compiler cd ~/wasm-compiler git clone --depth 1 --single-branch --branch release_40 https://github.com/llvm-mirror/llvm.git cd llvm/tools git clone --depth 1 --single-branch --branch release_40 https://github.com/llvm-mirror/clang.git cd .. && mkdir -p build && cd build cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=~/opt/wasm -DLLVM_TARGETS_TO_BUILD= -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly -DCMAKE_BUILD_TYPE=Release .. make -j4 install
下载gxb-core代码
git clone https://github.com/gxchain/gxb-core cd gxb-core && git checkout dev_master git submodule update --init --recursive
编译gxb-core, 并安装gxblib
export LLVM_DIR=/usr/local/Cellar/llvm@4/4.0.1/lib/cmake/llvm export WASM_ROOT=~/wasm/llvm mkdir -p build && cd build cmake -DLLVM_DIR=$LLVM_DIR -DWASM_ROOT=$WASM_ROOT -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DOPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include -DOPENSSL_LIBRARIES=/usr/local/opt/openssl/lib -DCMAKE_BUILD_TYPE=Release .. make -j4 sudo make install