fix: submit backlog proofs patch
This commit is contained in:
parent
cdcc6311ac
commit
b933540df7
28
README.md
28
README.md
@ -56,11 +56,39 @@ systemctl --user enable tower.service
|
|||||||
|
|
||||||
# Enable systemd persistence
|
# Enable systemd persistence
|
||||||
loginctl enable-linger deployer
|
loginctl enable-linger deployer
|
||||||
|
|
||||||
|
# see backlog submmmon patch below
|
||||||
```
|
```
|
||||||
|
|
||||||
### Debug
|
### Debug
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# logs
|
||||||
tail -n 100 -f ~/logs/node.log
|
tail -n 100 -f ~/logs/node.log
|
||||||
tail -n 100 -f ~/logs/tower.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
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user