-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-5992] Fix error in first-network dir
[FAB-5992] Fix error at line 42 of the script.sh in scripts dir, and add tips in byfn.sh. Change-Id: Id05277074dc240c06e1b47ac4eedf349e9555cfa Signed-off-by: Zhangjiong Xuan <[email protected]>
- Loading branch information
Zhangjiong Xuan
committed
Sep 11, 2017
1 parent
7cca09f
commit 77b4090
Showing
2 changed files
with
4 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,6 @@ setGlobals () { | |
CORE_PEER_ADDRESS=peer0.org1.example.com:7051 | ||
else | ||
CORE_PEER_ADDRESS=peer1.org1.example.com:7051 | ||
CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/[email protected]/msp | ||
fi | ||
else | ||
CORE_PEER_LOCALMSPID="Org2MSP" | ||
|
@@ -87,7 +86,7 @@ updateAnchorPeers() { | |
echo | ||
} | ||
|
||
## Sometimes Join takes time hence RETRY atleast for 5 times | ||
## Sometimes Join takes time hence RETRY at least for 5 times | ||
joinWithRetry () { | ||
peer channel join -b $CHANNEL_NAME.block >&log.txt | ||
res=$? | ||
|