-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
17d8b63
commit 01c4fe6
Showing
5 changed files
with
41 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
# Use Local Hyperledger Network: | ||
|
||
### Creating a Local Hyperledger Fabric Network | ||
Use the published fabric docker images and docker-compose script to get a local network quickly. | ||
Use the Hyperledger Fabric docker images and docker-compose script to get a local network quickly. | ||
|
||
1. Follow the Fabric v1 [Getting Started instructions](http://fabric-rtd.readthedocs.io/en/latest/getting_started.html). | ||
|
||
### Finished | ||
The network is all setup, right? | ||
So if you followed the instructions then your orderer will be batching new blocks every 10 seconds. | ||
This is a litttttle long for our application, and may give you unexpected behavior. | ||
This is a litttttle long for our application, and may give you undesired behavior, sometimes. | ||
Basicaly if you move a marble the trade will take 10 seconds to settle. | ||
The **UI may redraw the marble back in its original position**, and then jump to a correct position after some time. | ||
This is a known issue and is because of a the long batch time. | ||
If you use the Bluemix service, the batch time is only 1 second and you will not see this odd behavior. | ||
If you use the Bluemix service, the batch time is only 1 second and the app has been optimized for this specfic delay. | ||
|
||
Next we need to **pass the location of our peer to our marbles application**. | ||
Next we need to **pass the address and other info of our peer to our marbles application**. | ||
This is done by editing the creds file. | ||
|
||
1. Follow the [config instructions](./config_file.md). Then come back here. | ||
|
||
Once you have edited `blockchain_creds1.json` you are ready to install/instantiate Marbles. | ||
|
||
1. Continue where you left off in [tutorial 1](./tutorial_start_here.md#installchaincode). | ||
1. Next, follow the [configuration file instructions](./config_file.md). |