addnode ip:port add
#我是在qt介面上使用console進行連線的。也可以直接寫到bitcoin.conf配置檔案中寫法方式不同。
#例 addnode :127.0.0.1:12345 add
安裝依賴
sudo
apt-get
install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3
sudo
apt-get
install libevent-dev libboost-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev
sudo apt install libsqlite3-dev
sudo apt install libminiupnpc-dev libnatpmp-dev
sudo
apt-get
install libzmq3-dev
sudo
apt-get
install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools
sudo
apt-get
install libqrencode-dev
個人補充:
如果執行過程**現:berkeley db,libdb4.8問題可採用下面的
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo
apt-get update
sudo
apt-get
install libdb4.8-dev libdb4.8++-dev
或者
#berkleydb4.8
wget
''tar -xzvf db-4.8.30.nc.tar.gz
cd db-4.8.30.nc/build_unix/
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=/usr/local
make
install
export bdb_cflags=/usr/local/berkeleydb.4.8/
#執行configure如果無法引用,則configure是指定berkeleydb的路徑
#berkleydb剛剛安裝到:/usr/local目錄(--prefix=/usr/local)
#./configure ldflags="-l/berkleydb剛剛安裝目錄/lib/" cppflags="-i/berkleydb剛剛安裝目錄/include/"
#例如./configure ldflags="-l/usr/local/lib/" cppflags="-i/usr/local/include/"
如果執行過程**現:lib***,libevent的問題可採用下面的
#libevent-2.0.21
./configure -prefix=/usr
make
sudo
make
install
1.編譯過程中直接使用:
./autogen.sh
./configure
make
make
install
2.使用該語句出錯。提示需要新建錢包(可能是我使能錢包導致的)
.
/bitcoin-
cli-rpcuser=btc -rpcpassword=btcbtc -rpcport=18443 getnewaddress
3.新建錢包命令
.
/bitcoin-
cli-rpcuser=btc -rpcpassword=btcbtc -rpcport=18443 createwallet "此處填寫錢包名"
#或規範表示為需要新增雙引號。
./bitcoin-
cli-rpcuser=btc -rpcpassword=btcbtc -rpcport=18443 createwallet [wallet_name]
fee estimation failed. fallbackfee is disabled. wait a few blocks or enable -fallbackfee
使用如下自己新增手續費
bitcoin-cli -rpcuser=btc -rpcpassword=btcbtc -rpcport=
18443
-regtest -named sendtoaddress \
address=bcrt1qd3jck0lv87yuk25tk3xy5rqq67apwasee874xk \
amount=
25 \
fee_rate=
100
4.搭建兩節點bitcoin網路
鏈結內容為引用方便個人查詢,僅學習使用
以太坊私鏈搭建
搭建私有鏈官方文件 network id 隔離網路 ethereum options networkid value network identifier integer,1 frontier,2 morden disused 3 ropsten,4 rinkeby default 1 networ...
IOST節點搭建 私鏈
首先搭建golang環境,版本必須大於 1.11 linux安裝golang環境 注意注意!一定要在 etc profile 中加這兩條命令。把文章中原來的path刪掉。記得source etc profile golang export gopath go env gopath export pa...
在windows上搭建neo私鏈
本文基於neo cli v2.10.3 並且已有 net core 和 net framework 的執行環境 講述在windows上使用neo cli搭建四個共識節點私鏈的過程。1.首先建立四個共識節點的主執行應用 2.建立四個共識節點需要的錢包 通過在帳戶上右鍵 檢視私鑰 開啟的私鑰資訊中,複製...