Patch Installation
Download bor and navigate to the directory:
git clone https://github.com/maticnetwork/bor.git
cd bor
Check out the latest release:
git checkout RELEASE_TAG
where RELEASE_TAG
is the tag of the release version that you install.
For instance: git checkout v0.2.16
Apply the patch which will make your sentry announce all transactions:
git apply /path/to/sentry-patch/announce_only.patch
Stop Bor:
sudo service bor stop
Install Bor as normal:
make bor-all
or
docker build --tag bor:latest .
Start Bor:
sudo service bor start
Last updated