Bor Upgrade v0.2.14

This release fixes an issue that users have been facing after London Fork (EIP1559) - 0x0 sender address for txs pending in the txpool for both contracts and transfers.

Please follow the steps below to upgrade bor on your node to the latest version (https://github.com/maticnetwork/bor/releases/tag/v0.2.14):

Steps for Upgrading Bor on Nodes:

  1. Stop the bor service

    sudo service bor stop
    
  2. Navigate to bor directory

    cd ~/bor
    
  3. Fetch the latest changes and use Bor v0.2.14:

    git fetch
    git checkout v0.2.14
    
  4. Build latest changes

    make bor-all
    
  5. Now check bor version

    bor version
    
    #Should return something like:
    
    Bor
    Version: 0.2.14-stable
    Git Commit: 28963d5ccd3028e0ac6f1915845c747862d649d1
    Architecture: amd64
    Go Version: go1.17
    Operating System: linux
    ...
    
  6. Start the bor service

    sudo service bor start
    
  7. Check for bor logs if everything is working fine

    journalctl -u bor -f
    

Let us know if you have any questions.

Thank you.