Skip to content

Commit

Permalink
Update Besu version after bugfix
Browse files Browse the repository at this point in the history
- Update Besu to version 1.4.3 where event bug(hyperledger/besu#473) is fixed
- Minor document fix

Signed-off-by: Rajeev Ranjan <[email protected]>
  • Loading branch information
rranjan3 committed Apr 13, 2020
1 parent 937351a commit 6964461
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/BesuProxyModel.md
Original file line number Diff line number Diff line change
@@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions docs/dev-environments/ethereum/besu/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6964461

Please sign in to comment.