V 1.1 Updated to HyperLedger Composer V0.14
This release updates the build to use HyperLedger Composer V0.14. All chapters are updated with new admin code and queryBlockchain code and permissions. From a learning perspective, only Chapter 5 is affected, and that is primarily changing the user id used for admin connect from "PeerAdmin" to "admin". Some changes had to be made to the routines which listen for events on the blockchain, to create the rolling list of blocks as they are added to the chain.
Logic in the hlcClient.js file is unchanged.
To get the latest code, open a terminal window on your OSX or Ubuntu system and navigate to the ZeroToBlockchain folder.
commit all of your changes to your code e.g.
git add .
(enter)git commit -m 'an illuminating comment on this commit'
(enter)git push
(enter)
Type in:
git remote add upstream git://github.com/rddill-IBM/ZerotoBlockchain.git
(enter)
then type:
git pull upstream master
(enter)