fix: submit backlog proofs patch

This commit is contained in:
Mohamed Sohail 2021-11-18 09:35:40 +03:00
parent cdcc6311ac
commit b933540df7
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
1 changed files with 28 additions and 0 deletions

View File

@ -56,11 +56,39 @@ systemctl --user enable tower.service
# Enable systemd persistence
loginctl enable-linger deployer
# see backlog submmmon patch below
```
### Debug
```bash
# logs
tail -n 100 -f ~/logs/node.log
tail -n 100 -f ~/logs/tower.log
# diem cli
# check vdf proof height
node ms $ADDRESS
# check balance
query balance $ADDRESS
```
### Backlog Submission Patch
```bash
# clone the main repo
git clone https://github.com/OLSF/libra.git
cd libra
# add the remote with the fix
git remote add mortonbits https://github.com/mortonbits/libra.git
# fetch the branch with the fix
git fetch mortonbits submit-initial-vdf-proof
# move to thta brach
git checkout submit-initial-vdf-proof
# Config dependencies as hard mode documentation
make deps
# Build the source and install binaries
make bins
```