From 5127e328d45b0b25bea9730a858e9d1c44fe91ac Mon Sep 17 00:00:00 2001 From: Rajeev Ranjan Date: Mon, 13 Apr 2020 11:33:21 +0530 Subject: [PATCH] Update Besu version after bugfix - Update Besu to version 1.4.3 where event bug(https://github.com/hyperledger/besu/issues/473) is fixed - Minor document fix Signed-off-by: Rajeev Ranjan --- docs/BesuProxyModel.md | 2 +- docs/dev-environments/ethereum/besu/docker-compose.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/BesuProxyModel.md b/docs/BesuProxyModel.md index 7b4f94ba4..6f8aacea4 100644 --- a/docs/BesuProxyModel.md +++ b/docs/BesuProxyModel.md @@ -1,7 +1,7 @@ **Testing Avalon Proxy model with Hyperledger Besu** 1. Set the environment variable ``TCF_HOME`` to the Avalon root directory. Update ``no_proxy`` environment variable if you are behind a proxy - server. Add these hostnames - ``node1.avalon.local, rpc.node1.avalon.local, node2.avalon.local, rpc.node2.avalon.local``. These are the IP addresses used in the default Besu network defined in the corresponding [docker-compose file](dev-environments/besu/docker-compose.yaml) + server. Add these hostnames - ``node1.avalon.local, rpc.node1.avalon.local, node2.avalon.local, rpc.node2.avalon.local``. These are hostnames used in the default Besu network defined in the corresponding [docker-compose file](dev-environments/besu/docker-compose.yaml) 2. Start the Hyperledger Besu based Ethereum network and deploy contracts. To do so, you need to run the following ``` diff --git a/docs/dev-environments/ethereum/besu/docker-compose.yaml b/docs/dev-environments/ethereum/besu/docker-compose.yaml index 3cd30fc04..04ae49cc6 100644 --- a/docs/dev-environments/ethereum/besu/docker-compose.yaml +++ b/docs/dev-environments/ethereum/besu/docker-compose.yaml @@ -4,7 +4,7 @@ services: # node1 is first of the two-node ethereum private network based on Hyperledger Besu # node1.avalon.local: - image: hyperledger/besu:1.3.9 + image: hyperledger/besu:1.4.3 command: >- --data-path=/var/lib/besu --genesis-file=/var/lib/besu/genesis.json --rpc-http-enabled --rpc-http-host=0.0.0.0 --rpc-ws-enabled --rpc-ws-host=0.0.0.0 --discovery-enabled=false @@ -43,7 +43,7 @@ services: # node2 is the second of the two-node ethereum private network based on Hyperledger Besu # node2.avalon.local: - image: hyperledger/besu:1.3.9 + image: hyperledger/besu:1.4.3 command: >- --data-path=/var/lib/besu --genesis-file=/var/lib/besu/genesis.json --rpc-http-enabled --rpc-http-host=0.0.0.0 --rpc-ws-enabled --rpc-ws-host=0.0.0.0 --discovery-enabled=false