diff --git a/README.md b/README.md index f4f0a59..eefb038 100644 --- a/README.md +++ b/README.md @@ -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 ```