Follow these steps:
-
In
/app/models/node.py, update theBU_VERSIONcontant. -
In
/scripts/update.sh, update theBITCOIN_URL. -
In
/scripts/update.sh, update the default subversionOverride version in bitcoin.conf. It starts with:net.subversionOverride=/BitcoinUnlimited -
Update bitcoind on the node, as follows:
node = Node.query.get(10)
node.update_bitcoind()
Or, if you want to do it for all nodes:
nodes = Node.query.filter_by(status='up')
for node in nodes:
node.update_bitcoind()