Last active
August 28, 2019 11:19
-
-
Save wakiyamap/7fc871ab24d39e406547a62767928329 to your computer and use it in GitHub Desktop.
This file contains 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
install手順はココ | |
https://wiki.trezor.io/User_manual:Running_a_local_instance_of_Trezor_Wallet_backend_(Blockbook) | |
update手順 | |
systemctl stop backend-<coin>.service | |
systemctl stop blockbook-<coin>.service | |
apt remove backend-<coin> | |
apt remove blockbook-<coin> | |
make clean-all | |
make clean-deb //何かやらないとアップデートが上手くいかないその1 | |
make clean-bin //何かやらないとアップデートが上手くいかないその2 | |
git pull | |
// 一発目は失敗して二発目で成功する。dep ensure辺りがどっかで失敗してるのでは? | |
make all-<coin> | |
cd build | |
// apt install でdebファイル指定の時に./を付けないと反応してくれない。wikiには書いてない。 | |
apt install ./<package name> (eg., apt install ./backend-bitcoin_0.16.1-satoshilabs1_amd64.deb) | |
systemctl start backend-<coin>.service (eg. systemctl start backend-bitcoin.service) | |
apt install ./<blockbook package> (eg., apt install ./blockbook-bitcoin_0.0.6_amd64.deb) | |
systemctl start blockbook-<coin>.service (eg., systemctl start blockbook-bitcoin.service) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment